Saving data to csv #1861
-
I was following your first video to store the data in the csv file. I am not able to read the csv file. I imported pandas and then trying to go open but it was showing me this error |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
If you are using pandas, you could read csv by simply doing
|
Beta Was this translation helpful? Give feedback.
-
The default behaviour of For example
|
Beta Was this translation helpful? Give feedback.
The default behaviour of
save_data
is to create a pickle file. You need to pass theto_format
parameter tosave_data
.For example