Skip to content

Instantly share code, notes, and snippets.

@svmiller
Created August 25, 2021 15:20
Show Gist options
  • Save svmiller/36c9014cd70ba0af8615ddbaedff06d1 to your computer and use it in GitHub Desktop.
Save svmiller/36c9014cd70ba0af8615ddbaedff06d1 to your computer and use it in GitHub Desktop.
Read tibbles in Julia
# 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