Skill · DataFrames & data wranglingLive
Pandas
Load, filter, group, and reshape tabular data — the daily grind of every data and ML project, drilled until it's muscle memory.
- Task 1Build a DataFrameEasyTurn a dict of columns into a DataFrame — the pandas table.→
- Task 2Select & filterEasyPick a column and keep only the rows you want.→
- Task 3Add & transform columnsEasyCompute new columns from existing ones.→
- Task 4Missing dataMediumFind and fill the gaps real datasets always have.→
- Task 5Group & aggregateMediumSplit rows into groups and summarise each.→
- Task 6Sort & rankMediumOrder rows to surface the top of the table.→
- Task 7Merge & joinHardCombine two tables on a shared key.→
- Task 8Apply & mapHardTransform a column with string ops and a custom function.→
- Task 9Reshape & pivotHardTurn long data into a wide cross-tab.→
- Task 10A real mini-analysisHardChain group, sort, and total into a real answer.→