Skip to content

Commit

Permalink
Change pandas image
Browse files Browse the repository at this point in the history
  • Loading branch information
linogaliana committed Dec 20, 2023
1 parent 005d89b commit 056c606
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/manipulation/02a_pandas_tutorial.qmd
Expand Up @@ -126,12 +126,12 @@ import requests
url = 'https://miro.medium.com/max/700/1*6p6nF4_5XpHgcrYRrLYVAw.png'
response = requests.get(url, stream=True)
with open('featured_pandas.png', 'wb') as out_file:
with open('featured_pandas_tutorial.png', 'wb') as out_file:
shutil.copyfileobj(response.raw, out_file)
```

![Structuration d'un _DataFrame_ `Pandas`,
empruntée à <https://medium.com/epfl-extension-school/selecting-data-from-a-pandas-dataframe-53917dc39953>](https://minio.lab.sspcloud.fr/lgaliana/generative-art/pythonds/featured.png)
empruntée à <https://medium.com/epfl-extension-school/selecting-data-from-a-pandas-dataframe-53917dc39953>](featured_pandas_tutorial.png)

Le concept de __*tidy*__ data, popularisé par Hadley Wickham via ses packages `R`,
est parfaitement pertinent pour décrire la structure d'un `DataFrame pandas`.
Expand Down

0 comments on commit 056c606

Please sign in to comment.