[LeetCode] Pandas / 2889. Reshape data: Pivot
2024. 7. 8. 15:05ㆍCoding/LeetCode-Pandas
문제 링크
https://leetcode.com/problems/reshape-data-pivot/description/
문제
코드
import pandas as pd
def pivotTable(weather: pd.DataFrame) -> pd.DataFrame:
return weather.pivot(index='month', columns='city', values='temperature')
'Coding > LeetCode-Pandas' 카테고리의 다른 글
[LeetCode] Pandas / 2891. Method Chaining (0) | 2024.07.08 |
---|---|
[LeetCode] Pandas / 2890. Reshape data: Melt (0) | 2024.07.08 |
[LeetCode] Pandas / 2888. Reshape data concatenate (0) | 2024.07.08 |
[LeetCode] Pandas / 2887. Fill missing data (0) | 2024.07.08 |
[LeetCode] Pandas / 2886. Change data type (0) | 2024.07.08 |