[LeetCode] Pandas / 2891. Method Chaining
2024. 7. 8. 15:10ㆍCoding/LeetCode-Pandas
문제 링크
https://leetcode.com/problems/method-chaining/description/
문제
코드
import pandas as pd
def findHeavyAnimals(animals: pd.DataFrame) -> pd.DataFrame:
return animals[animals['weight']>100].sort_values(['weight'], ascending=False)[['name']]
'Coding > LeetCode-Pandas' 카테고리의 다른 글
[LeetCode] Pandas / 2890. Reshape data: Melt (0) | 2024.07.08 |
---|---|
[LeetCode] Pandas / 2889. Reshape data: Pivot (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 |