Created
March 6, 2022 20:28
-
-
Save MJacobs1985/95806e61656d83b943d2344c2cf22124 to your computer and use it in GitHub Desktop.
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
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