i want to reshape this dataset using r programming #731
adedayosam
started this conversation in
PAT - Progress Assessment Tools
Replies: 1 comment
-
Depends on the set, however I have gone through the liberty of helping out! Wide to long:data_long <- reshape(data_wide, varying = list(c("time1", "time2")), Long to widedata_wide <- reshape(data_long, idvar = "id", timevar = "time", This is not all of it, but you will get the just of it and a key insight would be to use the Docs. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
data.csv
Beta Was this translation helpful? Give feedback.
All reactions