wondering if someone came across this issue before I'm trying to cast a float column in a dataframe to integer , and i'm getting strange results, this is my code :
proj_id['test2'] = proj_id['campaign_id'].astype('int64')
proj_id[proj_id['campaign_id']==23847591030830034][['campaign_id','test2']]
so my campaign_id which was 23847591030830034 becomes 23847591030830032
i have tried to suppress scientific expression, rounding, ... but it seems like the conversion truncates a byte off my integer
thank you for your help
