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
b8d70ed5df9a80c9b57b988df57c3e93
mooc-rr
Commits
ac6278cd
Commit
ac6278cd
authored
Aug 07, 2023
by
b8d70ed5df9a80c9b57b988df57c3e93
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace exercice_fr.Rmd
parent
30c3561e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
exercice_fr.Rmd
module2/exo2/exercice_fr.Rmd
+8
-0
No files found.
module2/exo2/exercice_fr.Rmd
View file @
ac6278cd
...
@@ -20,3 +20,11 @@ min <- min(données)
...
@@ -20,3 +20,11 @@ min <- min(données)
mediane <- median(données)
mediane <- median(données)
max <- max(données)
max <- max(données)
```
```
## Affichage graphique
```{r}
par(pty="s") #Avoir des graphiques carrés
plot(données,xlim=c(0,100),ylim=c(0,25),xlab="",ylab="",yaxs="i",xaxs = "i",panel.first=grid(),type="l",col="blue",tck=0.01)
hist(données,breaks = seq(min(données),max(données),length=11),xlim=c(0,25),ylim=c(0,25),xlab="",ylab="",main="",yaxs="i",xaxs = "i",col="blue",tck=0.01)
box()
```
\ No newline at end of file
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