I'm trying to use pandas.DataFrame.to_csv to export a DataFrame to a .csv file, however after running the following code there's no output:
collist = sve2_all.columns
path_d = 'C:\\Users\\Desktop\\From EPD'
sve2_all.to_csv('sve2_all', path = path_d, columns = collist)
columns=collistargument? (not necessary as you are writing all columns). Furthermore, thepathkwarg is not in the docs you linked to.sve2_all.to_csv(path_d + '\\sve2_all.csv')