chore(i18n,curriculum): update translations (#43033)

This commit is contained in:
camperbot
2021-07-28 00:23:19 +09:00
committed by GitHub
parent a4358fc56c
commit 4624fe934d
75 changed files with 497 additions and 497 deletions

View File

@ -1,6 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c14d
title: Data Analysis Example A
title: Exemplo de análise de dados A
challengeType: 11
videoId: nVAaxZ34khk
dashedName: data-analysis-example-a
@ -8,34 +8,34 @@ dashedName: data-analysis-example-a
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
*Ao invés de usar notebooks.ai como foi mostrado no vídeo, você pode usar o Google Colab como substituto.*
More resources:
Mais recursos:
- [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)
- [Notebooks no GitHub](https://github.com/ine-rmotr-curriculum/FreeCodeCamp-Pandas-Real-Life-Example)
- [Como abrir notebooks do GitHub usando o Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
## --text--
What does the shape of our dataframe tell us?
O que nos diz a forma do nosso dataframe?
## --answers--
The size in gigabytes the dataframe we loaded into memory is.
O tamanho em gigabytes do dataframe que carregamos na memória.
---
How many rows and columns our dataframe has.
Quantas linhas e colunas o dataframe tem.
---
How many rows the source data had before loading.
Quantas linhas os dados de origem tinham antes de serem carregados.
---
How many columns the source data had before loading.
Quantas colunas os dados de origem tinham antes de serem carregados.
## --video-solution--

View File

@ -1,6 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c14e
title: Data Analysis Example B
title: Exemplo de análise de dados B
challengeType: 11
videoId: 0kJz0q0pvgQ
dashedName: data-analysis-example-b
@ -8,30 +8,30 @@ dashedName: data-analysis-example-b
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
*Ao invés de usar notebooks.ai como foi mostrado no vídeo, você pode usar o Google Colab como substituto.*
More resources:
Mais recursos:
- [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)
- [Notebooks no GitHub](https://github.com/ine-rmotr-curriculum/FreeCodeCamp-Pandas-Real-Life-Example)
- [Como abrir notebooks do GitHub usando o Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
## --text--
What does the `loc` method allow you to do?
O que o método `loc` permite que você faça?
## --answers--
Retrieve a subset of rows and columns by supplying integer-location arguments.
Recuperar um subconjunto de linhas e colunas fornecendo argumentos de local inteiros.
---
Access a group of rows and columns by supplying label(s) arguments.
Acessar um grupo de linhas e colunas fornecendo argumentos de etiqueta.
---
Returns the first `n` rows based on the integer argument supplied.
Retornar as primeiras `n` linhas baseadas no argumento inteiro fornecido.
## --video-solution--

View File

@ -1,6 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c160
title: Data Cleaning and Visualizations
title: Limpar e visualizar dados
challengeType: 11
videoId: mHjxzFS5_Z0
dashedName: data-cleaning-and-visualizations
@ -8,18 +8,18 @@ dashedName: data-cleaning-and-visualizations
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
*Ao invés de usar notebooks.ai como foi mostrado no vídeo, você pode usar o Google Colab como substituto.*
More resources:
Mais recursos:
- [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)
- [Notebooks no GitHub](https://github.com/ine-rmotr-curriculum/data-cleaning-rmotr-freecodecamp)
- [Como abrir notebooks do GitHub usando o Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
## --text--
When using Matplotlib's global API, what does the order of numbers mean here?
Ao usar a API global do matplotlib, o que significa a ordem dos números aqui?
```py
plt.subplot(1, 2, 1)
@ -27,15 +27,15 @@ plt.subplot(1, 2, 1)
## --answers--
My figure will have one column, two rows, and I am going to start drawing in the first (left) plot.
Minha figura terá uma coluna e duas linhas. Eu vou começar a desenhar no primeiro gráfico (à esquerda).
---
I am going to start drawing in the first (left) plot, my figure will have two rows, and my figure will have one column.
Vou começar a desenhar no primeiro gráfico (à esquerda). A minha figura terá duas linhas e a minha figura terá uma coluna.
---
My figure will have one row, two columns, and I am going to start drawing in the first (left) plot.
Minha figura terá uma linha e duas colunas. Eu vou começar a desenhar no primeiro gráfico (à esquerda).
## --video-solution--

View File

@ -1,6 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c15f
title: Data Cleaning Duplicates
title: Limpar dados duplicados
challengeType: 11
videoId: kj7QqjXhH6A
dashedName: data-cleaning-duplicates
@ -8,30 +8,30 @@ dashedName: data-cleaning-duplicates
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
*Ao invés de usar notebooks.ai como foi mostrado no vídeo, você pode usar o Google Colab como substituto.*
More resources:
Mais recursos:
- [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)
- [Notebooks no GitHub](https://github.com/ine-rmotr-curriculum/data-cleaning-rmotr-freecodecamp)
- [Como abrir notebooks do GitHub usando o Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
## --text--
The Python method `.duplicated()` returns a boolean Series for your DataFrame. `True` is the return value for rows that:
O método `.duplicated()` do Python retorna uma série booleana para o seu DataFrame. `True` é o valor de retorno para as linhas que:
## --answers--
contain a duplicate, where the value for the row contains the first occurrence of that value.
contém uma duplicata, onde o valor para a linha contém a primeira ocorrência desse valor.
---
contain a duplicate, where the value for the row is at least the second occurrence of that value.
contém uma duplicata, onde o valor para a linha é, ao menos, a segunda ocorrência desse valor.
---
contain a duplicate, where the value for the row contains either the first or second occurrence.
contém uma duplicata, onde o valor para a linha contém a primeira ou a segunda ocorrência.
## --video-solution--

View File

@ -1,6 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c15d
title: Data Cleaning Introduction
title: Introduzir a limpeza de dados
challengeType: 11
videoId: ovYNhnltVxY
dashedName: data-cleaning-introduction
@ -8,18 +8,18 @@ dashedName: data-cleaning-introduction
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
*Ao invés de usar notebooks.ai como foi mostrado no vídeo, você pode usar o Google Colab como substituto.*
More resources:
Mais recursos:
- [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)
- [Notebooks no GitHub](https://github.com/ine-rmotr-curriculum/data-cleaning-rmotr-freecodecamp)
- [Como abrir notebooks do GitHub usando o Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
## --text--
What will the following code print out?
O que será impresso pelo código a seguir?
```py
import pandas as pd

View File

@ -1,6 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c14f
title: How to use Jupyter Notebooks Intro
title: Como usar a introdução aos Jupyter Notebooks
challengeType: 11
videoId: h8caJq2Bb9w
dashedName: how-to-use-jupyter-notebooks-intro
@ -8,18 +8,18 @@ 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.*
*Ao invés de usar notebooks.ai como foi mostrado no vídeo, você pode usar o Google Colab como substituto.*
More resources:
Mais recursos:
- [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)
- [Notebooks no GitHub](https://github.com/ine-rmotr-curriculum/ds-content-interactive-jupyterlab-tutorial)
- [Como abrir notebooks do GitHub usando o Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
## --text--
What is **not** allowed in a Jupyter Notebook's cell?
O que **não** é permitido na célula de um Jupyter Notebook?
## --answers--
@ -27,11 +27,11 @@ Markdown
---
Python code
Código do Python
---
An Excel sheet
Uma planilha do Excel
## --video-solution--

View File

@ -1,6 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c150
title: Jupyter Notebooks Cells
title: Conhecer as células do Jupyter Notebooks
challengeType: 11
videoId: 5PPegAs9aLA
dashedName: jupyter-notebooks-cells
@ -8,30 +8,30 @@ dashedName: jupyter-notebooks-cells
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
*Ao invés de usar notebooks.ai como foi mostrado no vídeo, você pode usar o Google Colab como substituto.*
More resources:
Mais recursos:
- [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)
- [Notebooks no GitHub](https://github.com/ine-rmotr-curriculum/ds-content-interactive-jupyterlab-tutorial)
- [Como abrir notebooks do GitHub usando o Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
## --text--
What are the three main types of Jupyter Notebook Cell?
Quais são os três principais tipos de célula dos Jupyter Notebooks?
## --answers--
Code, Markdown, and Python
Código, markdown e Python
---
Code, Markdown, and Raw
Código, markdown e bruto
---
Markdown, Python, and Raw
Markdown, Python e bruto
## --video-solution--

View File

@ -1,6 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c151
title: Jupyter Notebooks Importing and Exporting Data
title: Importar e exportar os dados dos Jupyter Notebooks
challengeType: 11
videoId: k1msxD3JIxE
dashedName: jupyter-notebooks-importing-and-exporting-data
@ -8,38 +8,38 @@ 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.*
*Ao invés de usar notebooks.ai como foi mostrado no vídeo, você pode usar o Google Colab como substituto.*
More resources:
Mais recursos:
- [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)
- [Notebooks no GitHub](https://github.com/ine-rmotr-curriculum/ds-content-interactive-jupyterlab-tutorial)
- [Como abrir notebooks do GitHub usando o Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
## --text--
What kind of data can you import and work with in a Jupyter Notebook?
Que tipo de dados você pode importar e trabalhar em um Jupyter Notebook?
## --answers--
Excel files.
Arquivos do Excel.
---
CSV files.
Arquivos CSV.
---
XML files.
Arquivos XML.
---
Data from an API.
Dados de uma API.
---
All of the above.
Todas as anteriores.
## --video-solution--

View File

@ -1,6 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c155
title: Numpy Operations
title: Conhecer operações do NumPy
challengeType: 11
videoId: eqSVcJbaPdk
dashedName: numpy-operations
@ -8,18 +8,18 @@ dashedName: numpy-operations
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
*Ao invés de usar notebooks.ai como foi mostrado no vídeo, você pode usar o Google Colab como substituto.*
More resources:
Mais recursos:
- [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)
- [Notebooks no GitHub](https://github.com/ine-rmotr-curriculum/freecodecamp-intro-to-numpy)
- [Como abrir notebooks do GitHub usando o Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
## --text--
What is the value of `a` after you run the following code?
Qual é o valor de `a` depois de executar o seguinte código?
```py
a = np.arange(5)

View File

@ -1,6 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c158
title: Pandas Introduction
title: Introduzir o Pandas
challengeType: 11
videoId: 0xACW-8cZU0
dashedName: pandas-introduction
@ -8,18 +8,18 @@ dashedName: pandas-introduction
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
*Ao invés de usar notebooks.ai como foi mostrado no vídeo, você pode usar o Google Colab como substituto.*
More resources:
Mais recursos:
- [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)
- [Notebooks no GitHub](https://github.com/ine-rmotr-curriculum/freecodecamp-intro-to-pandas)
- [Como abrir notebooks do GitHub usando o Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
## --text--
What will the following code print out?
O que será impresso pelo código a seguir?
```py
import pandas as pd

View File

@ -1,6 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c164
title: Parsing HTML and Saving Data
title: Analisar HTML e salvar dados
challengeType: 11
videoId: bJaqnTWQmb0
dashedName: parsing-html-and-saving-data
@ -8,18 +8,18 @@ dashedName: parsing-html-and-saving-data
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
*Ao invés de usar notebooks.ai como foi mostrado no vídeo, você pode usar o Google Colab como substituto.*
More resources:
Mais recursos:
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/tree/master/unit-1-reading-data-with-python-and-pandas/lesson-17-reading-html-tables/files)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
- [Notebooks no GitHub](https://github.com/ine-rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/tree/master/unit-1-reading-data-with-python-and-pandas/lesson-17-reading-html-tables/files)
- [Como abrir notebooks do GitHub usando o Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
## --text--
What Python library has the `.read_html()` method we can we use for parsing HTML documents and extracting tables?
Qual biblioteca do Python tem o método `.read_html()` que podemos usar para analisar documentos HTML e extrair tabelas?
## --answers--

View File

@ -1,6 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c166
title: Python Functions and Collections
title: Conhecer coleções e funções do Python
challengeType: 11
videoId: NzpU17ZVlUw
dashedName: python-functions-and-collections
@ -8,30 +8,30 @@ dashedName: python-functions-and-collections
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
*Ao invés de usar notebooks.ai como foi mostrado no vídeo, você pode usar o Google Colab como substituto.*
More resources:
Mais recursos:
- [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)
- [Notebooks no GitHub](https://github.com/ine-rmotr-curriculum/ds-content-python-under-10-minutes)
- [Como abrir notebooks do GitHub usando o Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
## --text--
What is the main difference between lists and tuples in Python?
Qual é a principal diferença entre listas e tuplas em Python?
## --answers--
Tuples are immutable.
Tuplas são imutáveis.
---
Lists are ordered.
Listas são ordenadas.
---
Tuples are unordered.
Tuplas são desordenadas.
## --video-solution--

View File

@ -1,6 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c165
title: Python Introduction
title: Introduzir o Python
challengeType: 11
videoId: PrQV9JkLhb4
dashedName: python-introduction
@ -8,34 +8,34 @@ dashedName: python-introduction
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
*Ao invés de usar notebooks.ai como foi mostrado no vídeo, você pode usar o Google Colab como substituto.*
More resources:
Mais recursos:
- [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)
- [Notebooks no GitHub](https://github.com/ine-rmotr-curriculum/ds-content-python-under-10-minutes)
- [Como abrir notebooks do GitHub usando o Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
## --text--
How do we define blocks of code in the body of functions in Python?
Como definimos blocos de código no corpo das funções do Python?
## --answers--
We use a set of curly braces, one on either side of each new block of our code.
Usamos um conjunto de chaves, um em cada lado de cada novo bloco de nosso código.
---
We use indentation, usually right-aligned 4 spaces.
Usamos a indentação, geralmente 4 espaços alinhados à direita.
---
We do not denote blocks of code.
Não denotamos blocos de código.
---
We could use curly braces or indentation to denote blocks of code.
Poderíamos usar chaves ou indentação para indicar blocos de código.
## --video-solution--

View File

@ -1,6 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c167
title: Python Iteration and Modules
title: Realizar a iteração em Python e módulos
challengeType: 11
videoId: XzosGWLafrY
dashedName: python-iteration-and-modules
@ -8,18 +8,18 @@ dashedName: python-iteration-and-modules
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
*Ao invés de usar notebooks.ai como foi mostrado no vídeo, você pode usar o Google Colab como substituto.*
More resources:
Mais recursos:
- [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)
- [Notebooks no GitHub](https://github.com/ine-rmotr-curriculum/ds-content-python-under-10-minutes)
- [Como abrir notebooks do GitHub usando o Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
## --text--
How would you iterate over and print the keys and values of a dictionary named `user`?
Como você iteraria e imprimiria as chaves e valores de um dicionário chamado `user`?
## --answers--

View File

@ -1,6 +1,6 @@
---
id: 5e9a093a74c4063ca6f7c161
title: Reading Data Introduction
title: Introduzir a leitura de dados
challengeType: 11
videoId: cDnt02BcHng
dashedName: reading-data-introduction
@ -8,18 +8,18 @@ dashedName: reading-data-introduction
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
*Ao invés de usar notebooks.ai como foi mostrado no vídeo, você pode usar o Google Colab como substituto.*
More resources:
Mais recursos:
- [Notebooks on GitHub](https://github.com/ine-rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/tree/master/unit-1-reading-data-with-python-and-pandas/lesson-1-reading-csv-and-txt-files/files)
- [How to open Notebooks from GitHub using Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
- [Notebooks no GitHub](https://github.com/ine-rmotr-curriculum/RDP-Reading-Data-with-Python-and-Pandas/tree/master/unit-1-reading-data-with-python-and-pandas/lesson-1-reading-csv-and-txt-files/files)
- [Como abrir notebooks do GitHub usando o Google Colab.](https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb)
# --question--
## --text--
Given a file named `certificates.csv` with these contents:
Dado um arquivo chamado `certificates.csv` com este conteúdo:
<pre>
Name$Certificates$Time (in months)
@ -29,7 +29,7 @@ Ahmad$5$9
Beau$6$12
</pre>
Fill in the blanks for the missing arguments below:
Preencha as lacunas para os argumentos que faltam abaixo:
```py
import csv