Last active
March 6, 2022 20:34
-
-
Save MJacobs1985/fa0f81237c9afd3480d25e63c62b9e73 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=Tijdstip, y=PO2art, colour=as.factor(PO2art_bin))) + | |
geom_point() + | |
facet_wrap(~ID, scales="free")+ | |
theme_bw()+ theme(legend.position = "bottom") | |
ggplot(dataset, aes(x=Tijdstip, y=DO2i_methode1, colour=as.factor(DO2i_methode1_gen_bin))) + | |
geom_point() + | |
facet_wrap(~ID, scales="free")+ | |
theme_bw()+ theme(legend.position = "bottom") | |
ggplot(dataset, aes(x=Tijdstip, y=DO2i_methode1,colour=as.factor(DO2i_methode1_cath_bin))) + | |
geom_point() + | |
facet_wrap(~ID, scales="free")+ | |
theme_bw()+ theme(legend.position = "bottom") | |
ggplot(dataset, aes(x=Tijdstip, y=DO2i_methode1, | |
shape=as.factor(DO2i_methode1_gen_bin), | |
colour=as.factor(DO2i_methode1_cath_bin))) + | |
geom_point() + | |
facet_wrap(~ID, scales="free")+ | |
theme_bw()+ theme(legend.position = "bottom") | |
ggplot(dataset, aes(x=Tijdstip, | |
y=RQ_methode1, | |
colour=as.factor(RQ_methode1_bin))) + | |
geom_point() + | |
facet_wrap(~ID, scales="free") + | |
theme_bw() + theme(legend.position = "bottom") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment