chore(i18n,learn): processed translations (#45414)

This commit is contained in:
camperbot
2022-03-11 22:52:40 +05:30
committed by GitHub
parent 1e63f38c53
commit ecfdb41f97
41 changed files with 356 additions and 192 deletions

View File

@ -1,41 +1,45 @@
---
id: 5e9a093a74c4063ca6f7c14d
title: Data Analysis Example A
title: Análisis de datos ejemplo A
challengeType: 11
videoId: nVAaxZ34khk
bilibiliIds:
aid: 590571151
bvid: BV1sq4y1f7gr
cid: 409002372
dashedName: data-analysis-example-a
---
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
*En lugar de usar notebooks.ai como se muestra en el vídeo, puedes utilizar Google Colab en su lugar.*
More resources:
Más 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)
- [Libros de notas en GitHub](https://github.com/ine-rmotr-curriculum/FreeCodeCamp-Pandas-Real-Life-Example)
- [Cómo abrir libros de notas desde GitHub usando 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?
¿Qué nos dice la forma de nuestro marco de datos?
## --answers--
The size in gigabytes the dataframe we loaded into memory is.
El tamaño en gigabytes del marco de datos que cargamos a nuestra memoria es.
---
How many rows and columns our dataframe has.
Cuántas filas y columnas tiene nuestro marco de datos.
---
How many rows the source data had before loading.
Cuántas filas tenían los datos de origen antes de cargar.
---
How many columns the source data had before loading.
Cuántas columnas tenían los datos de origen antes de cargar.
## --video-solution--

View File

@ -1,37 +1,41 @@
---
id: 5e9a093a74c4063ca6f7c14e
title: Data Analysis Example B
title: Análisis de datos ejemplo B
challengeType: 11
videoId: 0kJz0q0pvgQ
bilibiliIds:
aid: 505593432
bvid: BV1kg411c7M6
cid: 409003530
dashedName: data-analysis-example-b
---
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
*En lugar de usar notebooks.ai como se muestra en el vídeo, puedes utilizar Google Colab en su lugar.*
More resources:
Más 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 en GitHub](https://github.com/ine-rmotr-curriculum/FreeCodeCamp-Pandas-Real-Life-Example)
- [Cómo abrir Notebooks desde GitHub usando 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?
¿Qué permite hacer el método `loc`?
## --answers--
Retrieve a subset of rows and columns by supplying integer-location arguments.
Recuperar un subconjunto de filas y columnas proporcionando argumentos de ubicación en números enteros.
---
Access a group of rows and columns by supplying label(s) arguments.
Acceda a un grupo de filas y columnas proporcionando argumentos de etiqueta(s).
---
Returns the first `n` rows based on the integer argument supplied.
Devuelve las primeras filas `n` basadas en el argumento entero proporcionado.
## --video-solution--

View File

@ -1,25 +1,29 @@
---
id: 5e9a093a74c4063ca6f7c160
title: Data Cleaning and Visualizations
title: Análisis y visualización de datos
challengeType: 11
videoId: mHjxzFS5_Z0
bilibiliIds:
aid: 933107558
bvid: BV1KM4y137Ny
cid: 409019632
dashedName: data-cleaning-and-visualizations
---
# --description--
*Instead of using notebooks.ai like it shows in the video, you can use Google Colab instead.*
*En vez de usar notebooks.ai como aparece en el video, puedes usar Google Colab.*
More resources:
Más 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 en GitHub](https://github.com/ine-rmotr-curriculum/data-cleaning-rmotr-freecodecamp)
- [Como abrir Notebooks desde GitHub usando 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?
Al utilizar la API global de Matplotlib, ¿qué significa aquí el orden de los números?
```py
plt.subplot(1, 2, 1)
@ -27,15 +31,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.
Mi figura tendrá una columna, dos filas y voy a empezar dibujando en la primera de la izquierda.
---
I am going to start drawing in the first (left) plot, my figure will have two rows, and my figure will have one column.
Voy a empezar a dibujar en la primera trama (izquierda), mi figura tendrá dos filas y mi figura tendrá una columna.
---
My figure will have one row, two columns, and I am going to start drawing in the first (left) plot.
Mi figura tendrá una fila, dos columnas, y voy a empezar a dibujar en la primera trama (izquierda).
## --video-solution--