All pandas problems
EasyTransform
Add a price-per-unit column
Create a new column `price_per_unit = revenue / units` and print the head.
- #assign
- #derived-column
Sample input
same sales CSV
Sample output
df with 6 columns instead of 5
pd-derived-column.pyneeds: pandas
Output
Press "Run code" to execute.
