Skip to content

Working with Data

Learn how to transform, clean, and analyze data in your projects.

Remove rows based on conditions:

Column: sales
Condition: greater than
Value: 1000

Choose which columns to keep or remove

Add new columns with formulas:

revenue = quantity * price
profit_margin = (revenue - cost) / revenue * 100

Aggregate data by categories:

Group by: region
Aggregate: SUM(sales), AVG(price)

Combine data from multiple sources:

  • Inner join
  • Left join
  • Right join
  • Full outer join
  • Remove rows with nulls
  • Fill with default value
  • Forward/backward fill

Identify and remove duplicate rows

Convert columns to correct types:

  • Text → Number
  • Text → Date
  • Number → Text