I have a pandas dataframe, all the columns are objects type. I am trying to convert it to cudf by typing cudf.from_pandas(df) but I have this error:
ArrowTypeError: Expected a bytes object, got a 'int' object
I don't understand why even that columns are string and not int. My second question is how to append to a cudf a new element ( like pandas : df. append())