Skip to content

Commit

Permalink
Retouche les chapitres pandas (#287)
Browse files Browse the repository at this point in the history
* Relec ka 2609 : relecture pandas (#286)

* 2e relecture numpy

* relec 02a_pandas_tuto

* 02a_pandas_tuto : bug install xlrd

* 02b_pandas_TP : debut relec jusqu'à exo 1

* relecture fin 02b_pandas_TP

* retouche tuto

* Automated changes

* Automated changes

* output hide

* eval false

* Automated changes

* Automated changes

Co-authored-by: Kim A <kim.demarty@laposte.net>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
3 people committed Sep 28, 2022
1 parent 43a863f commit e2b53ac
Show file tree
Hide file tree
Showing 3 changed files with 241 additions and 179 deletions.
4 changes: 2 additions & 2 deletions content/course/manipulation/01_numpy/index.qmd
Expand Up @@ -58,7 +58,7 @@ afin d'avoir des résultats reproductibles:
```{python}
np.random.seed(12345)
```

Remarque : Les auteurs de `numpy` [préconisent désormais](https://numpy.org/doc/stable/reference/random/index.html) de privilégier l'utilisation de générateurs via la fonction `default_rng()` plutôt que la simple utilisation de `numpy.random`.

Si les scripts suivants sont exécutés dans un `Notebook Jupyter`,
il est recommandé d'utiliser les paramètres suivants
Expand Down Expand Up @@ -221,7 +221,7 @@ avec les arrays.
# Correction
x[[0,3,5]]
x[::2]
x[-0]
x[1:]
x[:5]
# x2[0,:] # La première ligne
```
Expand Down

0 comments on commit e2b53ac

Please sign in to comment.