Skip to content

Instantly share code, notes, and snippets.

@aurielfournier
Created May 11, 2021 19:40
Show Gist options
  • Save aurielfournier/abe96ddb8bd7bb6735c1d294f13a32ac to your computer and use it in GitHub Desktop.
Save aurielfournier/abe96ddb8bd7bb6735c1d294f13a32ac to your computer and use it in GitHub Desktop.
library(tidyr)
long <- data.frame(Lname = c("A","B","C"),
c = c("c1","c2","c2"),
country=c("NZ","NZ","AL"))
> pivot_wider(data=long, values_from="Lname",names_from="country")
# A tibble: 2 x 3
c NZ AL
<chr> <chr> <chr>
1 c1 A NA
2 c2 B C
@cataraea
Copy link

cataraea commented May 11, 2021

hmm, I get same output with that?

but I can deal with this, thanks so much all!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment