mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-14 21:07:33 -05:00
48 lines
1.3 KiB
Markdown
48 lines
1.3 KiB
Markdown
---
|
|
id: 5e9a093a74c4063ca6f7c160
|
|
title: Datenbereinigung und Visualisierungen
|
|
challengeType: 11
|
|
videoId: mHjxzFS5_Z0
|
|
bilibiliIds:
|
|
aid: 933107558
|
|
bvid: BV1KM4y137Ny
|
|
cid: 409019632
|
|
dashedName: data-cleaning-and-visualizations
|
|
---
|
|
|
|
# --description--
|
|
|
|
*Anstatt notebooks.ai zu verwenden, wie es im Video gezeigt wird, kannst du stattdessen Google Colab verwenden.*
|
|
|
|
Weitere Quellen:
|
|
|
|
- <a href="https://github.com/ine-rmotr-curriculum/data-cleaning-rmotr-freecodecamp" target="_blank" rel="noopener noreferrer nofollow">Notebooks auf GitHub</a>
|
|
- <a href="https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb" target="_blank" rel="noopener noreferrer nofollow">Wie man Notebooks über Github mit Google Colab öffnet.</a>
|
|
|
|
# --question--
|
|
|
|
## --text--
|
|
|
|
Was bedeutet hier die Reihenfolge der Zahlen, wenn man die globale API von Matplotlib verwendet?
|
|
|
|
```py
|
|
plt.subplot(1, 2, 1)
|
|
```
|
|
|
|
## --answers--
|
|
|
|
Meine Abbildung wird eine Spalte und zwei Zeilen haben, und ich beginne in dem ersten ("linken") Plot zu zeichnen.
|
|
|
|
---
|
|
|
|
I am going to start drawing in the first (left) plot, my figure will have two rows, and my figure will have one column.
|
|
|
|
---
|
|
|
|
Meine Abbildung wird eine Spalte und zwei Zeilen haben, und ich beginne in dem ersten ("linken") Plot zu zeichnen.
|
|
|
|
## --video-solution--
|
|
|
|
3
|
|
|