Created
March 24, 2022 09:14
-
-
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
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