セクション 2. 章 7
single
Removing Duplicates
メニューを表示するにはスワイプしてください
To remove the duplicate rows, simply use function drop_duplicates(). To change the current dataframe, add inplace=True.
123new_data = data.drop_duplicates() # data is not modified # or data.drop_duplicates(inplace=True) # data is modified
タスク
スワイプしてコーディングを開始
The planets dataset is given to you. Remove the duplicates and then check the new shape of dataframe. Compare it with the original shape.
Note that dataframe may have only distinct records, in this case, the shape will remain the same.
解答
すべて明確でしたか?
フィードバックありがとうございます!
セクション 2. 章 7
single
AIに質問する
AIに質問する
何でも質問するか、提案された質問の1つを試してチャットを始めてください