Skip to content

Instantly share code, notes, and snippets.

@physicshinzui
Created July 12, 2021 12:40
Show Gist options
  • Save physicshinzui/4a47031eb376a89150286f6944b4e05d to your computer and use it in GitHub Desktop.
Save physicshinzui/4a47031eb376a89150286f6944b4e05d to your computer and use it in GitHub Desktop.
How to create a dataframe from a csv file.
using CSV, DataFrames
csvobj = CSV.File(filename)
df = DataFrame(csvobj)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment