AttributeError: module 'pandas' has no attribute 'to_csv'
问题 I took some rows from csv file like this pd.DataFrame(CV_data.take(5), columns=CV_data.columns) and performed some functions on it. now i want to save it in csv again but it is giving error module 'pandas' has no attribute 'to_csv' I am trying to save it like this pd.to_csv(CV_data, sep='\t', encoding='utf-8') here is my full code. how can i save my resulting data in csv or excel? # Disable warnings, set Matplotlib inline plotting and load Pandas package import warnings warnings