Created
August 25, 2021 15:20
-
-
Save svmiller/36c9014cd70ba0af8615ddbaedff06d1 to your computer and use it in GitHub Desktop.
Read tibbles in Julia
This file contains hidden or 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
# I'm teaching myself some shit. Bear with me. | |
using RData, DataFrame | |
df = load("/home/steve/Dropbox/projects/stevemisc/data/strategic_rivalries.rda") | |
df # not what I want... | |
df2 = DataFrame(df)[:, 1] # what I want... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment