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: