chore(i8n,learn): processed translations

This commit is contained in:
Crowdin Bot
2021-02-06 04:42:36 +00:00
committed by Mrugesh Mohapatra
parent 15047f2d90
commit e5c44a3ae5
3274 changed files with 172122 additions and 14164 deletions

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c14d
title: Data Analysis Example A
challengeType: 11
videoId: nVAaxZ34khk
dashedName: data-analysis-example-a
@ -7,9 +8,12 @@ dashedName: data-analysis-example-a
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Notebook](https://notebooks.ai/rmotr-curriculum/freecodecamp-pandas-real-life-example-24fa5bf8)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/FreeCodeCamp-Pandas-Real-Life-Example)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c14e
title: Data Analysis Example B
challengeType: 11
videoId: 0kJz0q0pvgQ
dashedName: data-analysis-example-b
@ -7,9 +8,12 @@ dashedName: data-analysis-example-b
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Notebook](https://notebooks.ai/rmotr-curriculum/freecodecamp-pandas-real-life-example-24fa5bf8)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/FreeCodeCamp-Pandas-Real-Life-Example)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
@ -19,7 +23,7 @@ What does the `loc` method allow you to do?
## --answers--
Retrieve a subset of rows and columns by supplying interger-location arguments.
Retrieve a subset of rows and columns by supplying integer-location arguments.
---

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c160
title: Data Cleaning and Visualizations
challengeType: 11
videoId: mHjxzFS5_Z0
dashedName: data-cleaning-and-visualizations
@ -7,9 +8,12 @@ dashedName: data-cleaning-and-visualizations
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Notebook](https://notebooks.ai/rmotr-curriculum/data-cleaning-rmotr-freecodecamp-fd76fa59)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/data-cleaning-rmotr-freecodecamp)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c15f
title: Data Cleaning Duplicates
challengeType: 11
videoId: kj7QqjXhH6A
dashedName: data-cleaning-duplicates
@ -7,9 +8,12 @@ dashedName: data-cleaning-duplicates
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Notebook](https://notebooks.ai/rmotr-curriculum/data-cleaning-rmotr-freecodecamp-fd76fa59)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/data-cleaning-rmotr-freecodecamp)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c15d
title: Data Cleaning Introduction
challengeType: 11
videoId: ovYNhnltVxY
dashedName: data-cleaning-introduction
@ -7,9 +8,12 @@ dashedName: data-cleaning-introduction
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Notebook](https://notebooks.ai/rmotr-curriculum/data-cleaning-rmotr-freecodecamp-fd76fa59)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/data-cleaning-rmotr-freecodecamp)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
@ -32,25 +36,21 @@ print(s.notnull().sum())
---
```
0 True
<pre>0 True
1 True
2 False
3 True
4 False
dtype: bool
```
dtype: bool</pre>
---
```
0 False
<pre>0 False
1 False
2 True
3 False
4 True
dtype: bool
```
dtype: bool</pre>
## --video-solution--

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c15e
title: Data Cleaning with DataFrames
challengeType: 11
videoId: sTMN_pdI6S0
dashedName: data-cleaning-with-dataframes
@ -7,9 +8,12 @@ dashedName: data-cleaning-with-dataframes
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Notebook](https://notebooks.ai/rmotr-curriculum/data-cleaning-rmotr-freecodecamp-fd76fa59)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/data-cleaning-rmotr-freecodecamp)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
@ -29,36 +33,36 @@ print(s)
## --answers--
```
<pre>
0 1.0
1 1.0
2 2.0
3 3.0
4 3.0
dtype: float64
```
</pre>
---
```
<pre>
0 NaN
1 1.0
2 2.0
3 2.0
4 3.0
dtype: float64
```
</pre>
---
```
<pre>
0 NaN
1 1.0
2 2.0
3 NaN
4 3.0
dtype: float64
```
</pre>
## --video-solution--

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c14f
title: How to use Jupyter Notebooks Intro
challengeType: 11
videoId: h8caJq2Bb9w
dashedName: how-to-use-jupyter-notebooks-intro
@ -7,11 +8,13 @@ dashedName: how-to-use-jupyter-notebooks-intro
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Notebook](https://notebooks.ai/rmotr-curriculum/interactive-jupyterlab-tutorial-ac5fa63f)
\- [Twitter Cheat Sheet](https://twitter.com/rmotr_com/status/1122176794696847361)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/ds-content-interactive-jupyterlab-tutorial)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
- [Twitter Cheat Sheet](https://twitter.com/rmotr_com/status/1122176794696847361)
# --question--

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c14c
title: Introduction to Data Analysis
challengeType: 11
videoId: VJrP2FUzKP0
dashedName: introduction-to-data-analysis

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c150
title: Jupyter Notebooks Cells
challengeType: 11
videoId: 5PPegAs9aLA
dashedName: jupyter-notebooks-cells
@ -7,31 +8,32 @@ dashedName: jupyter-notebooks-cells
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Notebook](https://notebooks.ai/rmotr-curriculum/interactive-jupyterlab-tutorial-ac5fa63f)
\- [Twitter Cheat Sheet](https://twitter.com/rmotr_com/status/1122176794696847361)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/ds-content-interactive-jupyterlab-tutorial)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
- [Twitter Cheat Sheet](https://twitter.com/rmotr_com/status/1122176794696847361)
# --question--
## --text--
Which cells are responsible for rich display?
What are the three main types of Jupyter Notebook Cell?
## --answers--
Code Cells
Code, Markdown, and Python
---
Markdown Cells
Code, Markdown, and Raw
---
Raw Cells
Markdown, Python, and Raw
## --video-solution--
1
2

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c151
title: Jupyter Notebooks Importing and Exporting Data
challengeType: 11
videoId: k1msxD3JIxE
dashedName: jupyter-notebooks-importing-and-exporting-data
@ -7,11 +8,13 @@ dashedName: jupyter-notebooks-importing-and-exporting-data
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Notebook](https://notebooks.ai/rmotr-curriculum/interactive-jupyterlab-tutorial-ac5fa63f)
\- [Twitter Cheat Sheet](https://twitter.com/rmotr_com/status/1122176794696847361)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/ds-content-interactive-jupyterlab-tutorial)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
- [Twitter Cheat Sheet](https://twitter.com/rmotr_com/status/1122176794696847361)
# --question--

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c157
title: Numpy Algebra and Size
challengeType: 11
videoId: XAT97YLOKD8
dashedName: numpy-algebra-and-size
@ -7,9 +8,12 @@ dashedName: numpy-algebra-and-size
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Notebook](https://notebooks.ai/rmotr-curriculum/freecodecamp-intro-to-numpy-6c285b74)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/freecodecamp-intro-to-numpy)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c154
title: Numpy Arrays
challengeType: 11
videoId: VDYVFHBL1AM
dashedName: numpy-arrays
@ -7,9 +8,12 @@ dashedName: numpy-arrays
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Notebook](https://notebooks.ai/rmotr-curriculum/freecodecamp-intro-to-numpy-6c285b74)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/freecodecamp-intro-to-numpy)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
@ -29,7 +33,7 @@ print(A[:, :2])
## --answers--
```python
```py
[['a' 'b']]
```

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c156
title: Numpy Boolean Arrays
challengeType: 11
videoId: N1ttsMmcVMM
dashedName: numpy-boolean-arrays
@ -7,9 +8,12 @@ dashedName: numpy-boolean-arrays
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Notebook](https://notebooks.ai/rmotr-curriculum/freecodecamp-intro-to-numpy-6c285b74)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/freecodecamp-intro-to-numpy)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c152
title: Numpy Introduction A
challengeType: 11
videoId: P-JjV6GBCmk
dashedName: numpy-introduction-a
@ -7,9 +8,12 @@ dashedName: numpy-introduction-a
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Notebook](https://notebooks.ai/rmotr-curriculum/freecodecamp-intro-to-numpy-6c285b74)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/freecodecamp-intro-to-numpy)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
@ -23,7 +27,7 @@ Often you won't work directly with Numpy.
---
It's is extremely slow.
It is extremely slow.
---

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c153
title: Numpy Introduction B
challengeType: 11
videoId: YIqgrNLAZkA
dashedName: numpy-introduction-b
@ -7,9 +8,12 @@ dashedName: numpy-introduction-b
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Notebook](https://notebooks.ai/rmotr-curriculum/freecodecamp-intro-to-numpy-6c285b74)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/freecodecamp-intro-to-numpy)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c155
title: Numpy Operations
challengeType: 11
videoId: eqSVcJbaPdk
dashedName: numpy-operations
@ -7,9 +8,12 @@ dashedName: numpy-operations
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Notebook](https://notebooks.ai/rmotr-curriculum/freecodecamp-intro-to-numpy-6c285b74)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/freecodecamp-intro-to-numpy)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c15b
title: Pandas Conditional Selection and Modifying DataFrames
challengeType: 11
videoId: BFlH0fN5xRQ
dashedName: pandas-conditional-selection-and-modifying-dataframes
@ -7,9 +8,12 @@ dashedName: pandas-conditional-selection-and-modifying-dataframes
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Notebook](https://notebooks.ai/rmotr-curriculum/freecodecamp-intro-to-pandas-902ae59b)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/freecodecamp-intro-to-pandas)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
@ -35,33 +39,33 @@ print(certificates_earned)
## --answers--
```
<pre>
Tom 13
Kris 11
Ahmad 9
Beau 7
Name: Longest streak, dtype: int64
```
</pre>
---
```
<pre>
Certificates Time (in months) Longest streak
Tom 8 16 13
Kris 2 5 11
Ahmad 5 9 9
Beau 6 12 7
```
</pre>
---
```
<pre>
Certificates Longest streak
Tom 8 13
Kris 2 11
Ahmad 5 9
Beau 6 7
```
</pre>
## --video-solution--

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c15c
title: Pandas Creating Columns
challengeType: 11
videoId: _sSo2XZoB3E
dashedName: pandas-creating-columns
@ -7,9 +8,12 @@ dashedName: pandas-creating-columns
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Notebook](https://notebooks.ai/rmotr-curriculum/freecodecamp-intro-to-pandas-902ae59b)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/freecodecamp-intro-to-pandas)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
@ -17,13 +21,11 @@ More resources:
What code would add a "Certificates per month" column to the `certificates_earned` DataFrame like the one below?
```
Certificates Time (in months) Certificates per month
<pre> Certificates Time (in months) Certificates per month
Tom 8 16 0.50
Kris 2 5 0.40
Ahmad 5 9 0.56
Beau 6 12 0.50
```
Beau 6 12 0.50</pre>
## --answers--

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c15a
title: Pandas DataFrames
challengeType: 11
videoId: 7SgFBYXaiH0
dashedName: pandas-dataframes
@ -7,9 +8,12 @@ dashedName: pandas-dataframes
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Notebook](https://notebooks.ai/rmotr-curriculum/freecodecamp-intro-to-pandas-902ae59b)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/freecodecamp-intro-to-pandas)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
@ -32,29 +36,29 @@ print(certificates_earned.iloc[2])
## --answers--
```
<pre>
Tom 16
Kris 5
Ahmad 9
Beau 12
Name: Time (in months), dtype: int64
```
</pre>
---
```
<pre>
Certificates 6
Time (in months) 12
Name: Beau, dtype: int64
```
</pre>
---
```
<pre>
Certificates 5
Time (in months) 9
Name: Ahmad, dtype: int64
```
</pre>
## --video-solution--

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c159
title: Pandas Indexing and Conditional Selection
challengeType: 11
videoId: '-ZOrgV_aA9A'
dashedName: pandas-indexing-and-conditional-selection
@ -7,9 +8,12 @@ dashedName: pandas-indexing-and-conditional-selection
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Notebook](https://notebooks.ai/rmotr-curriculum/freecodecamp-intro-to-pandas-902ae59b)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/freecodecamp-intro-to-pandas)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
@ -30,30 +34,30 @@ print(certificates_earned[certificates_earned > 5])
## --answers--
```
<pre>
Tom True
Kris False
Ahmad False
Beau True
dtype: int64
```
</pre>
---
```
<pre>
Tom 8
Ahmad 5
Beau 6
dtype: int64
```
</pre>
---
```
<pre>
Tom 8
Beau 6
dtype: int64
```
</pre>
## --video-solution--

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c158
title: Pandas Introduction
challengeType: 11
videoId: 0xACW-8cZU0
dashedName: pandas-introduction
@ -7,9 +8,12 @@ dashedName: pandas-introduction
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Notebook](https://notebooks.ai/rmotr-curriculum/freecodecamp-intro-to-pandas-902ae59b)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/freecodecamp-intro-to-pandas)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c164
title: Parsing HTML and Saving Data
challengeType: 11
videoId: bJaqnTWQmb0
dashedName: parsing-html-and-saving-data
@ -7,15 +8,12 @@ dashedName: parsing-html-and-saving-data
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Reading CSVs Notebook](https://notebooks.ai/rmotr-curriculum/rdp-reading-csv-and-txt-files-fb829f46)
\- [Reading SQL](https://notebooks.ai/rmotr-curriculum/rdp-reading-data-from-relational-databases-2a3a889b)
\- [Reading HTML](https://notebooks.ai/rmotr-curriculum/rdp-reading-html-tables-eb9cca73)
\- [Reading Excel files](https://notebooks.ai/rmotr-curriculum/rdp-reading-excel-files-a6b99973)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c166
title: Python Functions and Collections
challengeType: 11
videoId: NzpU17ZVlUw
dashedName: python-functions-and-collections
@ -7,9 +8,12 @@ dashedName: python-functions-and-collections
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Notebook](https://notebooks.ai/rmotr-curriculum/python-under-10-minutes-15addcb2)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/ds-content-python-under-10-minutes)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c165
title: Python Introduction
challengeType: 11
videoId: PrQV9JkLhb4
dashedName: python-introduction
@ -7,9 +8,12 @@ dashedName: python-introduction
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Notebook](https://notebooks.ai/rmotr-curriculum/python-under-10-minutes-15addcb2)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/ds-content-python-under-10-minutes)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c167
title: Python Iteration and Modules
challengeType: 11
videoId: XzosGWLafrY
dashedName: python-iteration-and-modules
@ -7,9 +8,12 @@ dashedName: python-iteration-and-modules
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Notebook](https://notebooks.ai/rmotr-curriculum/python-under-10-minutes-15addcb2)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/ds-content-python-under-10-minutes)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c162
title: Reading Data CSV and TXT
challengeType: 11
videoId: ViGEv0zOzUk
dashedName: reading-data-csv-and-txt
@ -7,15 +8,12 @@ dashedName: reading-data-csv-and-txt
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Reading CSVs Notebook](https://notebooks.ai/rmotr-curriculum/rdp-reading-csv-and-txt-files-fb829f46)
\- [Reading SQL](https://notebooks.ai/rmotr-curriculum/rdp-reading-data-from-relational-databases-2a3a889b)
\- [Reading HTML](https://notebooks.ai/rmotr-curriculum/rdp-reading-html-tables-eb9cca73)
\- [Reading Excel files](https://notebooks.ai/rmotr-curriculum/rdp-reading-excel-files-a6b99973)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c163
title: Reading Data from Databases
challengeType: 11
videoId: MtgXS1MofRw
dashedName: reading-data-from-databases
@ -7,15 +8,12 @@ dashedName: reading-data-from-databases
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Reading CSVs Notebook](https://notebooks.ai/rmotr-curriculum/rdp-reading-csv-and-txt-files-fb829f46)
\- [Reading SQL](https://notebooks.ai/rmotr-curriculum/rdp-reading-data-from-relational-databases-2a3a889b)
\- [Reading HTML](https://notebooks.ai/rmotr-curriculum/rdp-reading-html-tables-eb9cca73)
\- [Reading Excel files](https://notebooks.ai/rmotr-curriculum/rdp-reading-excel-files-a6b99973)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--

View File

@ -1,5 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c161
title: Reading Data Introduction
challengeType: 11
videoId: cDnt02BcHng
dashedName: reading-data-introduction
@ -7,15 +8,12 @@ dashedName: reading-data-introduction
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
More resources:
\- [Reading CSVs Notebook](https://notebooks.ai/rmotr-curriculum/rdp-reading-csv-and-txt-files-fb829f46)
\- [Reading SQL](https://notebooks.ai/rmotr-curriculum/rdp-reading-data-from-relational-databases-2a3a889b)
\- [Reading HTML](https://notebooks.ai/rmotr-curriculum/rdp-reading-html-tables-eb9cca73)
\- [Reading Excel files](https://notebooks.ai/rmotr-curriculum/rdp-reading-excel-files-a6b99973)
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
@ -23,13 +21,13 @@ More resources:
Given a file named `certificates.csv` with these contents:
```
<pre>
Name$Certificates$Time (in months)
Tom$8$16
Kris$2$5
Ahmad$5$9
Beau$6$12
```
</pre>
Fill in the blanks for the missing arguments below:

View File

@ -1,5 +1,6 @@
---
id: 5e46f7e5ac417301a38fb929
title: Demographic Data Analyzer
challengeType: 10
dashedName: demographic-data-analyzer
---
@ -8,7 +9,7 @@ dashedName: demographic-data-analyzer
In this challenge you must analyze demographic data using Pandas. You are given a dataset of demographic data that was extracted from the 1994 Census database.
You can access [the full project description and starter code on repl.it](https://repl.it/@freeCodeCamp/fcc-demographic-data-analyzer).
You can access [the full project description and starter code on Repl.it](https://repl.it/github/freeCodeCamp/boilerplate-demographic-data-analyzer).
After going to that link, fork the project. Once you complete the project based on the instructions in 'README.md', submit your project link below.

View File

@ -1,5 +1,6 @@
---
id: 5e46f7e5ac417301a38fb928
title: Mean-Variance-Standard Deviation Calculator
challengeType: 10
dashedName: mean-variance-standard-deviation-calculator
---
@ -8,7 +9,7 @@ dashedName: mean-variance-standard-deviation-calculator
Create a function that uses Numpy to output the mean, variance, and standard deviation of the rows, columns, and elements in a 3 x 3 matrix.
You can access [the full project description and starter code on repl.it](https://repl.it/@freeCodeCamp/fcc-mean-var-std).
You can access [the full project description and starter code on Repl.it](https://repl.it/github/freeCodeCamp/boilerplate-mean-variance-standard-deviation-calculator).
After going to that link, fork the project. Once you complete the project based on the instructions in 'README.md', submit your project link below.

View File

@ -1,5 +1,6 @@
---
id: 5e46f7f8ac417301a38fb92a
title: Medical Data Visualizer
challengeType: 10
dashedName: medical-data-visualizer
---
@ -8,7 +9,7 @@ dashedName: medical-data-visualizer
In this project, you will visualize and make calculations from medical examination data using matplotlib, seaborn, and pandas.
You can access [the full project description and starter code on repl.it](https://repl.it/@freeCodeCamp/fcc-medical-data-visualizer).
You can access [the full project description and starter code on Repl.it](https://repl.it/github/freeCodeCamp/boilerplate-medical-data-visualizer).
After going to that link, fork the project. Once you complete the project based on the instructions in 'README.md', submit your project link below.

View File

@ -1,5 +1,6 @@
---
id: 5e46f802ac417301a38fb92b
title: Page View Time Series Visualizer
challengeType: 10
dashedName: page-view-time-series-visualizer
---
@ -8,7 +9,7 @@ dashedName: page-view-time-series-visualizer
For this project you will visualize time series data using a line chart, bar chart, and box plots. You will use Pandas, matplotlib, and seaborn to visualize a dataset containing the number of page views each day on the freeCodeCamp.org forum from 2016-05-09 to 2019-12-03. The data visualizations will help you understand the patterns in visits and identify yearly and monthly growth.
You can access [the full project description and starter code on repl.it](https://repl.it/@freeCodeCamp/fcc-time-series-visualizer).
You can access [the full project description and starter code on Repl.it](https://repl.it/github/freeCodeCamp/boilerplate-page-view-time-series-visualizer).
After going to that link, fork the project. Once you complete the project based on the instructions in 'README.md', submit your project link below.

View File

@ -1,5 +1,6 @@
---
id: 5e4f5c4b570f7e3a4949899f
title: Sea Level Predictor
challengeType: 10
dashedName: sea-level-predictor
---
@ -8,7 +9,7 @@ dashedName: sea-level-predictor
In this project, you will analyze a dataset of the global average sea level change since 1880. You will use the data to predict the sea level change through year 2050.
You can access [the full project description and starter code on repl.it](https://repl.it/@freeCodeCamp/fcc-sea-level-predictor).
You can access [the full project description and starter code on Repl.it](https://repl.it/github/freeCodeCamp/boilerplate-sea-level-predictor).
After going to that link, fork the project. Once you complete the project based on the instructions in 'README.md', submit your project link below.

View File

@ -1,5 +1,6 @@
---
id: 5e9a0a8e09c5df3cc3600ed4
title: 'Accessing and Changing Elements, Rows, Columns'
challengeType: 11
videoId: v-7Y7koJ_N0
dashedName: accessing-and-changing-elements-rows-columns

View File

@ -1,5 +1,6 @@
---
id: 5e9a0a8e09c5df3cc3600ed3
title: Basics of Numpy
challengeType: 11
videoId: f9QrZrKQMLI
dashedName: basics-of-numpy

View File

@ -1,5 +1,6 @@
---
id: 5e9a0a8e09c5df3cc3600ed7
title: Copying Arrays Warning
challengeType: 11
videoId: iIoQ0_L0GvA
dashedName: copying-arrays-warning

View File

@ -1,5 +1,6 @@
---
id: 5e9a0a8e09c5df3cc3600ed6
title: Initialize Array Problem
challengeType: 11
videoId: 0jGfH8BPfOk
dashedName: initialize-array-problem
@ -12,20 +13,33 @@ dashedName: initialize-array-problem
What is another way to produce the following array?
```py
[[1. 1. 1. 1. 1.]
[1. 0. 0. 0. 1.]
[1. 0. 9. 0. 1.]
[1. 0. 0. 0. 1.]
[1. 1. 1. 1. 1.]]
[[0. 0. 0. 0. 0. 0. 0.]
[0. 1. 1. 1. 1. 1. 0.]
[0. 1. 1. 1. 1. 1. 0.]
[0. 1. 1. 5. 1. 1. 0.]
[0. 1. 1. 1. 1. 1. 0.]
[0. 1. 1. 1. 1. 1. 0.]
[0. 0. 0. 0. 0. 0. 0.]]
```
## --answers--
```py
output = np.ones((5, 5))
output = np.ones((7, 7))
z = np.zeros((3, 3))
z[1, 1] = 9
z = np.zeros((5, 5))
z[2, 2] = 5
output[1:1, -1:-1] = z
```
---
```py
output = np.zeros((7,7))
z = np.ones((5, 5))
z[2, 2] = 5
output[1:-1, 1:-1] = z
```
@ -33,26 +47,15 @@ output[1:-1, 1:-1] = z
---
```py
output = np.ones((5, 5))
output = np.ones((7, 7))
z = np.zeros((3, 3))
z[1, 1] = 9
z = np.zeros((5, 5))
z[3, 3] = 5
output[1:3, 1:3] = z
```
---
```py
output = np.ones((5, 5))
z = np.zeros((3, 3))
z[1, 1] = 9
output[4:1, 4:1] = z
output[1:-1, 1:-1] = z
```
## --video-solution--
1
2

View File

@ -1,5 +1,6 @@
---
id: 5e9a0a8e09c5df3cc3600ed5
title: Initializing Different Arrays
challengeType: 11
videoId: CEykdsKT4U4
dashedName: initializing-different-arrays

View File

@ -1,5 +1,6 @@
---
id: 5e9a0a8e09c5df3cc3600eda
title: Loading Data and Advanced Indexing
challengeType: 11
videoId: tUdBZ7pF8Jg
dashedName: loading-data-and-advanced-indexing
@ -11,10 +12,10 @@ dashedName: loading-data-and-advanced-indexing
Given a file named `data.txt` with these contents:
```
<pre>
29,97,32,100,45
15,88,5,75,22
```
</pre>
What code would produce the following array?

View File

@ -1,5 +1,6 @@
---
id: 5e9a0a8e09c5df3cc3600ed8
title: Mathematics
challengeType: 11
videoId: 7txegvyhtVk
dashedName: mathematics

View File

@ -1,5 +1,6 @@
---
id: 5e9a0a8e09c5df3cc3600ed9
title: Reorganizing Arrays
challengeType: 11
videoId: VNWAQbEM-C8
dashedName: reorganizing-arrays

View File

@ -1,5 +1,6 @@
---
id: 5e9a0a8e09c5df3cc3600ed2
title: What is NumPy
challengeType: 11
videoId: 5Nwfs5Ej85Q
dashedName: what-is-numpy