Skip to content

Instantly share code, notes, and snippets.

  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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