Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mooc-rr
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
16fd6933414ad4ae0fb1412e7effdbc7
mooc-rr
Commits
777a0d75
Commit
777a0d75
authored
Jun 04, 2020
by
aaaaaa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ajout theme_bw
parent
d1132f7d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
exercice_fr.Rmd
module2/exo3/exercice_fr.Rmd
+5
-2
No files found.
module2/exo3/exercice_fr.Rmd
View file @
777a0d75
...
@@ -31,7 +31,8 @@ data.frame(dat) %>%
...
@@ -31,7 +31,8 @@ data.frame(dat) %>%
geom_line(col = "blue") +
geom_line(col = "blue") +
scale_x_continuous(limits = c(0, 100), breaks = seq(0, 100, by = 20), expand = c(0, 0)) +
scale_x_continuous(limits = c(0, 100), breaks = seq(0, 100, by = 20), expand = c(0, 0)) +
scale_y_continuous(limits = c(0, 25), breaks = seq(0, 25, by = 5), expand = c(0, 0)) +
scale_y_continuous(limits = c(0, 25), breaks = seq(0, 25, by = 5), expand = c(0, 0)) +
labs(x = "", y = "")
labs(x = "", y = "") +
theme_bw()
```
```
# Histogramme
# Histogramme
...
@@ -40,7 +41,9 @@ Bien qu'utilisant le même nombre de "bins" que dans l'image attendue (10 "bins"
...
@@ -40,7 +41,9 @@ Bien qu'utilisant le même nombre de "bins" que dans l'image attendue (10 "bins"
data.frame(dat) %>%
data.frame(dat) %>%
ggplot(aes(x = dat)) +
ggplot(aes(x = dat)) +
geom_histogram(bins = 10, fill = "blue", col = "black") +
geom_histogram(bins = 10, fill = "blue", col = "black") +
labs(x = "", y = "")
scale_y_continuous(limits = c(0, 27), breaks = seq(0, 30, by = 5), expand = c(0, 0)) +
labs(x = "", y = "") +
theme_bw()
```
```
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