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
cb1e5ba91280d02583d0604166e71c1c
mooc-rr
Commits
7ea60172
Commit
7ea60172
authored
Mar 30, 2020
by
cb1e5ba91280d02583d0604166e71c1c
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no commit message
parent
78e6dbe5
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
93 additions
and
8 deletions
+93
-8
exercice.ipynb
module2/exo2/exercice.ipynb
+12
-5
exercice.ipynb
module2/exo3/exercice.ipynb
+81
-3
No files found.
module2/exo2/exercice.ipynb
View file @
7ea60172
...
...
@@ -16,7 +16,7 @@
},
{
"cell_type": "code",
"execution_count":
1
,
"execution_count":
22
,
"metadata": {},
"outputs": [],
"source": [
...
...
@@ -29,7 +29,7 @@
},
{
"cell_type": "code",
"execution_count": 2,
"execution_count": 2
3
,
"metadata": {},
"outputs": [],
"source": [
...
...
@@ -38,14 +38,14 @@
},
{
"cell_type": "code",
"execution_count":
18
,
"execution_count":
26
,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" Valeur moyenne :
23.4
\n",
" Valeur moyenne :
14.113000000000001
\n",
" Ecart-type : 4.334094455301447\n",
" Valeur min : 2.8\n",
" Valeur max : 23.4\n",
...
...
@@ -54,7 +54,7 @@
}
],
"source": [
"data_moy = np.m
ax(data)
\n",
"data_moy = np.m
ean(data) # np.average
\n",
"data_ecart_type = np.std(data,ddof=1)\n",
"data_min = np.min(data)\n",
"data_max = np.max(data)\n",
...
...
@@ -62,6 +62,13 @@
"print(f' Valeur moyenne : {data_moy}\\n Ecart-type : {data_ecart_type}')\n",
"print(f' Valeur min : {data_min}\\n Valeur max : {data_max}\\n Valeur mediane : {data_med} ')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
...
...
module2/exo3/exercice.ipynb
View file @
7ea60172
This diff is collapsed.
Click to expand it.
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