Question32 The Pandas DataFrame employees is displayed as below. [table] Name | Department | Salary | Location John | HR | 60000 | Sydney Emma | IT | NaN | Melbourne Liam | Finance | 55000 | None Olivia | IT | 70000 | Sydney Noah | Finance | 65000 | None Ava | HR | 62000 | Brisbane [/table] Which option(s) can replace missing values in the Location column with the most frequently occurring location? Select one or more alternatives: [table] [/table]Select one or more alternatives: employees['Location'].fillna('None') employees['Location'].fillna(employees['Location'].mode()[0], inplace=True) employees['Location'].replace(np.nan, 'Melbourne') employees['Location'].fillna('Sydney', inplace=True) ResetMaximum marks: 3 Flag question undefined多项选择题

A

employees['Location'].fillna('None')

B

employees['Location'].fillna(employees['Location'].mode()[0], inplace=True)

C

employees['Location'].replace(np.nan, 'Melbourne')

D

employees['Location'].fillna('Sydney', inplace=True)

登录即可查看完整答案

我们收录了全球超50000道真实原题与详细解析,现在登录,立即获得答案。

类似问题

更多留学生实用工具

加入我们,立即解锁 海量真题独家解析,让复习快人一步!