From 25a6a54b777a5379146a03f58e2dbcdc690611a9 Mon Sep 17 00:00:00 2001 From: 6044f7ba74fe444923919de71b482464 <6044f7ba74fe444923919de71b482464@app-learninglab.inria.fr> Date: Tue, 14 Oct 2025 14:09:29 +0000 Subject: [PATCH] correction std ddof1 --- .../exo2/{exercice.ipynb => exercice 2 partie 2.ipynb} | 8 ++++---- .../exo3/{exercice.ipynb => exercice 2 partie 3.ipynb} | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename module2/exo2/{exercice.ipynb => exercice 2 partie 2.ipynb} (97%) rename module2/exo3/{exercice.ipynb => exercice 2 partie 3.ipynb} (100%) diff --git a/module2/exo2/exercice.ipynb b/module2/exo2/exercice 2 partie 2.ipynb similarity index 97% rename from module2/exo2/exercice.ipynb rename to module2/exo2/exercice 2 partie 2.ipynb index 0441e28..9fcbacc 100644 --- a/module2/exo2/exercice.ipynb +++ b/module2/exo2/exercice 2 partie 2.ipynb @@ -124,22 +124,22 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 18, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "4.312369534258399" + "4.334094455301447" ] }, - "execution_count": 15, + "execution_count": 18, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "std = np.std(data)\n", + "std = np.std(data, ddof=1)\n", "std" ] }, diff --git a/module2/exo3/exercice.ipynb b/module2/exo3/exercice 2 partie 3.ipynb similarity index 100% rename from module2/exo3/exercice.ipynb rename to module2/exo3/exercice 2 partie 3.ipynb -- 2.18.1