Skip to content

Tag: dataframe

‘str’ object has no attribute ‘to_csv’

I’m trying to save some data that I collected on a csv file. And for that I’m using the following code, but I’m getting the error: ‘str’ object has no attribute ‘to_csv’ I am using this line df = pd.to_numeric(df, errors=’ignore’) to change Nonetype to num…

Check if value of dataframe is existing in list

I am trying to split a pandas Dataframe into two, based on the value in the column “country”. If the value exists in the following list (EU-COUNTRY-CODES), the row should be added to a dataframe called “EU”, if it does not exist in the list I want to add the row to another dataframe. I…