15 Jan 2025PythonUnknown

Reshape Data Pivot

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.

available solution files

  • Python reshape-data-pivot/solution.py

Solution files

Pythonreshape-data-pivot/solution.py
import 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')