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
f6f8a22e4377b6d0231cab92d0d5018b
mooc-rr
Commits
5528d561
Commit
5528d561
authored
Jun 10, 2020
by
Olivia Guillin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fichier .html du travail évalué par les pairs
parent
2efcc233
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2288 additions
and
6 deletions
+2288
-6
exercice_R_fr.html
module3/exo3/exercice_R_fr.html
+2282
-0
exercice_R_fr.org
module3/exo3/exercice_R_fr.org
+6
-6
No files found.
module3/exo3/exercice_R_fr.html
0 → 100644
View file @
5528d561
This diff is collapsed.
Click to expand it.
module3/exo3/exercice_R_fr.org
View file @
5528d561
#+Title:
Votre titre
#+AUTHOR:
Votre nom
#+DATE:
La date du jour
#+Title:
Travail évalué par les pairs
#+AUTHOR:
Olivia
#+DATE:
10 Juin 2020
#+LANGUAGE: fr
# #+PROPERTY: header-args :eval never-export
...
...
@@ -47,7 +47,7 @@ table = [line.split(',') for line in donnees_lines]
** Trie des données
Nous affichons le début du tableau afin d'avoir un aperçu des données
#+begin_src python :results value :session
#+begin_src python :results value :session
:exports both
table[:10]
#+end_src
...
...
@@ -147,7 +147,7 @@ date_evt_bis=as.Date(donnees$Date, format="%m/%d/%Y")
* Analyse
On peut maintenant faire le graphe du nombre de mort en échelle linéaire.
#+BEGIN_SRC R :results output graphics :file Covid19_lin.png :session
#+BEGIN_SRC R :results output graphics :file Covid19_lin.png :session
:exports both
plot(date_evt_bis, donnees$Belgique, type ='l', col ='brown', lwd =2,
ylab='Morts cumulées',
xlab='Date',
...
...
@@ -172,7 +172,7 @@ legend('topleft', inset=0.05 , legend =c('Hong-Kong', 'France', 'Allemagne', 'Ir
[[file:Covid19_lin.png]]
Puis en échelle logarithmique
#+BEGIN_SRC R :results output graphics :file Covid19_log.png :session
#+BEGIN_SRC R :results output graphics :file Covid19_log.png :session
:exports both
plot(date_evt_bis, donnees$Belgique, type ='l', col ='brown', lwd =2,
ylab='Morts cumulées',
xlab='Date',
...
...
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