Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您能描述一下:loc、iloc 和 apply 之间的区别吗?最好基于示例。 df.loc df.iloc df.apply()
df.loc
df.iloc
df.apply()
出于行选择的目的,它们都在 pandas 中使用。.iloc:根据行号选择数据。.loc:根据标签名称或使用任何条件语句选择数据。