this entry collects the solution files i have for reshape data pivot. i may expand it with a fuller write-up later, but the implementation files are already here.
available solution files
- Python
reshape-data-pivot/solution.py
notes and solution files for reshape data pivot.
this entry collects the solution files i have for reshape data pivot. i may expand it with a fuller write-up later, but the implementation files are already here.
reshape-data-pivot/solution.pyimport pandas as pd
def pivotTable(weather: pd.DataFrame) -> pd.DataFrame:
return weather.pivot_table(index=class="syntax-string">'month', columns=class="syntax-string">'city', values=class="syntax-string">'temperature', aggfunc=class="syntax-string">'max')