📜  如何在 pandas 中转换列的数据类型 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:26.448000             🧑  作者: Mango

代码示例4
# convert all columns of DataFrame
df = df.apply(pd.to_numeric) # convert all columns of DataFrame

# convert just columns "a" and "b"
df[["a", "b"]] = df[["a", "b"]].apply(pd.to_numeric)