InterviewSolution
Saved Bookmarks
| 1. |
What is Pivoting? Name any two functions of Pandas which support pivoting. |
|
Answer» Pivoting means to use unique values from specified index/columns to form apex of the resulting dataframe. Pivot() and pivot_table() methods |
|