Skip to content

Instantly share code, notes, and snippets.

@MJacobs1985
Last active March 6, 2022 20:34
Show Gist options
  • Save MJacobs1985/fa0f81237c9afd3480d25e63c62b9e73 to your computer and use it in GitHub Desktop.
Save MJacobs1985/fa0f81237c9afd3480d25e63c62b9e73 to your computer and use it in GitHub Desktop.
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