Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MJacobs1985/95806e61656d83b943d2344c2cf22124 to your computer and use it in GitHub Desktop.
Save MJacobs1985/95806e61656d83b943d2344c2cf22124 to your computer and use it in GitHub Desktop.
ggplot(dataset, aes(x=as.numeric(ElapsedTime), y=VO2cdi,colour=as.factor(ID))) +
geom_line() +
theme_bw()+ theme(legend.position = "none")
ggplot(dataset, aes(x=as.numeric(ElapsedTime), y=VO2cdi,colour=as.factor(ID))) +
geom_point() +
theme_bw()+ theme(legend.position = "none")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment