Skip to content
Snippets Groups Projects
Commit 10f66eac authored by Nene Barry's avatar Nene Barry
Browse files

remove ressources folder

parent ef28990d
No related branches found
No related tags found
2 merge requests!109[release] Regular merge of develop,!1082021 07 27 it101 dm
2021/resources/img/privateBin.png

75.9 KiB

2021/resources/img/r3-training-logo.png

32.4 KiB

2021/resources/img/rdm-cycle.png

450 KiB

2021/resources/img/red-cross.png

33.7 KiB

2021/resources/img/reproducibility_nature.png

379 KiB

2021/resources/img/rudi_balling.jpg

69.9 KiB

library(ggplot2)
library(data.table)
library(ggpubr)
data(iris)
iris <- data.table(iris)
iris <- iris[c(1:103)]
g1 <- ggplot(iris, aes(x = Species, y = Sepal.Length))+
geom_bar(aes(fill = Species),stat="summary", fun.y="mean" ) +guides(fill = F)+
ylim(c(0,8)) + ylab("Mean Sepal Lenght ")
g2 <- ggplot(iris, aes(x = Species, y = Sepal.Length))+
geom_boxplot(aes(fill = Species))+
ylim(c(0,8))+guides(fill = F)+ylab("Sepal Length")
g3 <- ggplot(iris, aes(x = Species, y = Sepal.Length))+
geom_boxplot(aes(fill = Species))+
ylim(c(0,8))+ geom_point( position="jitter")+
guides(fill = F)+ylab("Sepal Length")
ggarrange(g1, g2, g3, nrow = 1)+ggsave(filename = "../plot-data.png", device = "png", width =12, height = 6)
2021/resources/img/undraw_secure_server_s9u8.png

26.2 KiB

2021/resources/img/wordcloud.png

227 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment