How to load CSV file at Jupyterlab

I’m trying both file reading and Jupyter for the first time, and need to try opening, reading and amending (writing back) to csv file, can any one provide or guide me for an example/tutorial to start with. thanks

Can’t help you with Jupyter but just use CSV.jl

using CSV
df = CSV.read(filepath)
1 Like

Thanks, it worked with Jupyter in same way.

mm, how can I write to it, I did not get it from the CSV package tutorial

CSV.write(write_path, data_frame)

This completely replaced the old contents, I need to add to it, sorry I did not mention this note in my reply before.

append=true? See here

1 Like

Thanks a lot, worked perfectly