Could you please support me to clarify the proper way to convert a selected Dataframe column into string ?
'Product_ID' part of dataframe 'df' is automatically selected as integer
If I use following statement:
df['Product_ID']=df['Product_ID'].to_string()
generate error:
TypeError: Can't convert 'int' object to str implicitly
same issue is generated by .astype(str) or .apply(str)
thanks!