Skip to content

Commit e8c7ac8

Browse files
authored
Merge branch 'main' into patch-6
2 parents 2dbc291 + efbd21b commit e8c7ac8

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

2-Working-With-Data/08-data-preparation/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ Notice that when a previous value is not available for forward-filling, the null
265265
266266
In addition to missing data, you will often encounter duplicated data in real-world datasets. Fortunately, `pandas` provides an easy means of detecting and removing duplicate entries.
267267

268-
- **Identifying duplicates: `duplicated`**: You can easily spot duplicate values using the `duplicated` method in pandas, which returns a Boolean mask indicating whether an entry in a `DataFrame` is a duplicate of an ealier one. Let's create another example `DataFrame` to see this in action.
268+
- **Identifying duplicates: `duplicated`**: You can easily spot duplicate values using the `duplicated` method in pandas, which returns a Boolean mask indicating whether an entry in a `DataFrame` is a duplicate of an earlier one. Let's create another example `DataFrame` to see this in action.
269269
```python
270270
example4 = pd.DataFrame({'letters': ['A','B'] * 2 + ['B'],
271271
'numbers': [1, 2, 1, 3, 3]})
@@ -290,7 +290,7 @@ example4.duplicated()
290290
4 True
291291
dtype: bool
292292
```
293-
- **Dropping duplicates: `drop_duplicates`: `drop_duplicates` simply returns a copy of the data for which all of the `duplicated` values are `False`:
293+
- **Dropping duplicates: `drop_duplicates`:** simply returns a copy of the data for which all of the `duplicated` values are `False`:
294294
```python
295295
example4.drop_duplicates()
296296
```

3-Data-Visualization/09-visualization-quantities/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ An excellent library to create both simple and sophisticated plots and charts of
2121
2222
If you have a dataset and need to discover how much of a given item is included, one of the first tasks you have at hand will be to inspect its values.
2323

24-
✅ There are very good 'cheat sheets' available for Matplotlib [here](https://github.com/matplotlib/cheatsheets/blob/master/cheatsheets-1.png) and [here](https://github.com/matplotlib/cheatsheets/blob/master/cheatsheets-2.png).
24+
✅ There are very good 'cheat sheets' available for Matplotlib [here](https://matplotlib.org/cheatsheets/cheatsheets.pdf).
2525

2626
## Build a line plot about bird wingspan values
2727

@@ -146,7 +146,7 @@ This bar chart, however, is unreadable because there is too much non-grouped dat
146146

147147
Filter your data to include only the bird's category.
148148

149-
✅ Notice that that you use Pandas to manage the data, and then let Matplotlib do the charting.
149+
✅ Notice that you use Pandas to manage the data, and then let Matplotlib do the charting.
150150

151151
Since there are many categories, you can display this chart vertically and tweak its height to account for all the data:
152152

3-Data-Visualization/09-visualization-quantities/translations/README.es.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Una excelente librería para crear gráficos tanto simples como sofisticados de
2121
2222
Si tienes un conjunto de datos y necesitas descubrir qué cantidad de un elemento determinado está incluido, una de las primeras tareas que tienes que hacer será inspeccionar sus valores.
2323

24-
✅ Hay muy buenas "hojas de trucos" disponibles para Matplotlib [aquí](https://github.com/matplotlib/cheatsheets/blob/master/cheatsheets-1.png) y [aquí](https://github.com/matplotlib/cheatsheets/blob/master/cheatsheets-2.png).
24+
✅ Hay muy buenas "hojas de trucos" disponibles para Matplotlib [aquí](https://matplotlib.org/cheatsheets/cheatsheets.pdf).
2525

2626
## Construir un gráfico de líneas sobre los valores de la envergadura de las aves
2727

@@ -203,4 +203,4 @@ Este conjunto de datos sobre aves ofrece una gran cantidad de información sobre
203203
Esta primera lección has recibido alguna información sobre cómo utilizar Matplotlib para visualizar cantidades. Investiga sobre otras formas de trabajar con conjuntos de datos para su visualización. [Plotly](https://github.com/plotly/plotly.py) es otra forma que no cubriremos en estas lecciones, así que echa un vistazo a lo que puede ofrecer.
204204
## Asignación
205205

206-
[Líneas, dispersiones y barras](assignment.es.md)
206+
[Líneas, dispersiones y barras](assignment.es.md)

3-Data-Visualization/09-visualization-quantities/translations/README.hi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
2222
यदि आपके पास एक डेटासेट है और यह पता लगाने की आवश्यकता है कि किसी दिए गए आइटम में से कितना शामिल है, तो आपके पास सबसे पहले कार्यों में से एक इसके मूल्यों का निरीक्षण करना होगा।
2323

24-
✅ माटप्लोटलिब के लिए बहुत अच्छी 'चीट शीट' उपलब्ध हैं [here](https://github.com/matplotlib/cheatsheets/blob/master/cheatsheets-1.png) and [here](https://github.com/matplotlib/cheatsheets/blob/master/cheatsheets-2.png).
24+
✅ माटप्लोटलिब के लिए बहुत अच्छी 'चीट शीट' उपलब्ध हैं [here](https://matplotlib.org/cheatsheets/cheatsheets.pdf).
2525

2626
## बर्ड विंगस्पैन मूल्यों के बारे में एक लाइन प्लॉट बनाएं
2727

3-Data-Visualization/09-visualization-quantities/translations/README.ko.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
2222
데이터 세트가 있고 주어진 항목이 얼마나 포함되어 있는지 확인해야 하는 경우에, 가장 먼저 처리해야 하는 작업 중 하나는 해당 값을 검사하는 것입니다.
2323

24-
✅ Matplotlib에 사용할 수 있는 매우 좋은 '치트 시트'가 있습니다. [here](https://github.com/matplotlib/cheatsheets/blob/master/cheatsheets-1.png) and [here](https://github.com/matplotlib/cheatsheets/blob/master/cheatsheets-2.png).
24+
✅ Matplotlib에 사용할 수 있는 매우 좋은 '치트 시트'가 있습니다. [here](https://matplotlib.org/cheatsheets/cheatsheets.pdf).
2525

2626
## 새 날개 길이 값에 대한 선 그래프 작성하기
2727

3-Data-Visualization/09-visualization-quantities/translations/README.pt-br.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Uma biblioteca excelente para criar tanto gráficos simples como sofisticados e
2121
2222
Se você tem um dataset e precisa descobrir quanto de um dado elemento está presente, uma das primeiras coisas que você precisará fazer é examinar seus valores.
2323

24-
✅ Existem dicas ('cheat sheets') ótimas disponíveis para o Matplotlib [aqui](https://github.com/matplotlib/cheatsheets/blob/master/cheatsheets-1.png) e [aqui](https://github.com/matplotlib/cheatsheets/blob/master/cheatsheets-2.png).
24+
✅ Existem dicas ('cheat sheets') ótimas disponíveis para o Matplotlib [aqui](https://matplotlib.org/cheatsheets/cheatsheets.pdf).
2525

2626
## Construindo um gráfico de linhas sobre os valores de envergadura de aves
2727

0 commit comments

Comments
 (0)