1# convert just columns "a" and "b" of dataframe(df)
2df["a","b"] = cudf.to_numeric(df["a","b"])
3
4# convert ALL columns of DataFrame
5df = cudf.to_numeric(df) # convert all columns of DataFrame,
6
7#dont try `cudf.apply` as it is not supported in cudf API