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
521adc37f04e8509ebf5ce131815aa0a
mooc-rr
Commits
3e9a6e95
Commit
3e9a6e95
authored
Feb 01, 2021
by
521adc37f04e8509ebf5ce131815aa0a
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
écartype2_empirique
parent
9de84fc1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
6 deletions
+24
-6
exercice.ipynb
module2/exo2/exercice.ipynb
+24
-6
No files found.
module2/exo2/exercice.ipynb
View file @
3e9a6e95
...
...
@@ -20,7 +20,7 @@
},
{
"cell_type": "code",
"execution_count": 5,
"execution_count":
1
5,
"metadata": {},
"outputs": [
{
...
...
@@ -32,13 +32,13 @@
}
],
"source": [
"moyenne_A = np.mean(A)\n",
"moyenne_A = np.mean(A
, 0
)\n",
"print(moyenne_A)"
]
},
{
"cell_type": "code",
"execution_count":
8
,
"execution_count":
14
,
"metadata": {},
"outputs": [
{
...
...
@@ -50,13 +50,13 @@
}
],
"source": [
"minimum_A = np.min(A)\n",
"minimum_A = np.min(A
, 0
)\n",
"print(minimum_A)"
]
},
{
"cell_type": "code",
"execution_count":
9
,
"execution_count":
16
,
"metadata": {},
"outputs": [
{
...
...
@@ -68,7 +68,7 @@
}
],
"source": [
"maximum_A = np.max(A)\n",
"maximum_A = np.max(A
, 0
)\n",
"print(maximum_A)"
]
},
...
...
@@ -108,6 +108,24 @@
"print(écartype_A)"
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"4.334094455301447\n"
]
}
],
"source": [
"écartype2_A = np.std(A,0,ddof = 1)\n",
"print(écartype2_A)"
]
},
{
"cell_type": "code",
"execution_count": null,
...
...
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