Data Manipulation and Visualization Techniques in Julia - methods of accessing columns and rows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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