Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
R3
school
courses
Commits
10f66eac
Commit
10f66eac
authored
Jul 28, 2021
by
Nene Barry
Browse files
remove ressources folder
parent
ef28990d
Changes
49
Hide whitespace changes
Inline
Side-by-side
2021/resources/img/privateBin.png
deleted
100644 → 0
View file @
ef28990d
75.9 KB
2021/resources/img/r3-training-logo.png
deleted
100644 → 0
View file @
ef28990d
32.4 KB
2021/resources/img/rdm-cycle.png
deleted
100644 → 0
View file @
ef28990d
450 KB
2021/resources/img/red-cross.png
deleted
100644 → 0
View file @
ef28990d
33.7 KB
2021/resources/img/reproducibility_nature.png
deleted
100644 → 0
View file @
ef28990d
379 KB
2021/resources/img/rudi_balling.jpg
deleted
100644 → 0
View file @
ef28990d
69.9 KB
2021/resources/img/scripts/ggplot_visualization.R
deleted
100644 → 0
View file @
ef28990d
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
deleted
100644 → 0
View file @
ef28990d
26.2 KB
2021/resources/img/wordcloud.png
deleted
100644 → 0
View file @
ef28990d
227 KB
Prev
1
2
3
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment