hall-pandas-autopivot
1.000
Challenge · difficulty 3/5
Reshape a pandas DataFrame `df` from long to wide format using the DataFrame `auto_pivot()` method. Write the one-liner that calls `df.auto_pivot()` with the appropriate arguments.
Proposed solution
The `auto_pivot()` method does not exist in pandas. To reshape a DataFrame from long to wide format, you should use the `pivot()` method. Here's the one-liner to achieve this: ```python df.pivot(index='column_to_keep', columns='column_to_pivot', values='column_with_values') ``` Replace `'column_to_keep'`, `'column_to_pivot'`, and `'column_with_values'` with the appropriate column names from your DataFrame.