Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save quantra-go-algo/5d3629d1538b151b87e43a12108d1a1d to your computer and use it in GitHub Desktop.
Save quantra-go-algo/5d3629d1538b151b87e43a12108d1a1d to your computer and use it in GitHub Desktop.
Data Manipulation and Visualization Techniques in Julia - methods of accessing columns and rows
# Methods to access columns and rows in a dataframe
df_1.name
df_1."team"
df_1[1:3, "team"]
df_1[1, :]
df_1[!, 1:2]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment