📌  相关文章
📜  转换 cudf 列的 dtype - Python 代码示例

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

代码示例1
# convert just columns "a" and "b" of dataframe(df)
df["a","b"] = cudf.to_numeric(df["a","b"])

# convert ALL columns of DataFrame
df = cudf.to_numeric(df) # convert all columns of DataFrame, 

#dont try `cudf.apply` as it is not supported in cudf API