From 92847d9e81fc5a995ec0a40affdeaec7d00b666d Mon Sep 17 00:00:00 2001 From: Frederick Legaspi Date: Thu, 18 Nov 2021 09:00:22 -0500 Subject: [PATCH 1/9] Update README.md Fix typo: from "ealier" to "earlier" Fix format: From **Dropping duplicates: `drop_duplicates`: `drop_duplicates` to **Dropping duplicates: `drop_duplicates`:** --- 2-Working-With-Data/08-data-preparation/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2-Working-With-Data/08-data-preparation/README.md b/2-Working-With-Data/08-data-preparation/README.md index 7ef4d808..127a3d20 100644 --- a/2-Working-With-Data/08-data-preparation/README.md +++ b/2-Working-With-Data/08-data-preparation/README.md @@ -265,7 +265,7 @@ Notice that when a previous value is not available for forward-filling, the null 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. -- **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. +- **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. ```python example4 = pd.DataFrame({'letters': ['A','B'] * 2 + ['B'], 'numbers': [1, 2, 1, 3, 3]}) @@ -290,7 +290,7 @@ example4.duplicated() 4 True dtype: bool ``` -- **Dropping duplicates: `drop_duplicates`: `drop_duplicates` simply returns a copy of the data for which all of the `duplicated` values are `False`: +- **Dropping duplicates: `drop_duplicates`:** simply returns a copy of the data for which all of the `duplicated` values are `False`: ```python example4.drop_duplicates() ``` From 205a97b4959c36c82cdb3bbdfdab9e71c5238075 Mon Sep 17 00:00:00 2001 From: Frederick Legaspi Date: Thu, 18 Nov 2021 09:49:54 -0500 Subject: [PATCH 2/9] Update assignment.ipynb Delete: "You can explore it in the [assignment notebook](assignment.ipynb)." The link is resulting in a "Notebook not found" page. Also, this is already the assignment notebook for the link. --- 2-Working-With-Data/08-data-preparation/assignment.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2-Working-With-Data/08-data-preparation/assignment.ipynb b/2-Working-With-Data/08-data-preparation/assignment.ipynb index 35978e99..755bdfca 100644 --- a/2-Working-With-Data/08-data-preparation/assignment.ipynb +++ b/2-Working-With-Data/08-data-preparation/assignment.ipynb @@ -12,7 +12,7 @@ "\r\n", "A client has been testing a [small form](index.html) to gather some basic data about their client-base. They have brought their findings to you to validate the data they have gathered. You can open the `index.html` page in a browser to take a look at the form.\r\n", "\r\n", - "You have been provided a [dataset of csv records](../../data/form.csv)that contain entries from the form as well as some basic visualizations.The client pointed out that some of the visualizations look incorrect but they're unsure about how to resolve them. You can explore it in the [assignment notebook](assignment.ipynb).\r\n", + "You have been provided a [dataset of csv records](../../data/form.csv)that contain entries from the form as well as some basic visualizations.The client pointed out that some of the visualizations look incorrect but they're unsure about how to resolve them.\r\n", "\r\n", "## Instructions\r\n", "\r\n", @@ -139,4 +139,4 @@ }, "nbformat": 4, "nbformat_minor": 2 -} \ No newline at end of file +} From 7f132d0870a2dc1c667a9b12e63379b73a058a3a Mon Sep 17 00:00:00 2001 From: Frederick Legaspi Date: Fri, 19 Nov 2021 08:21:51 -0500 Subject: [PATCH 3/9] Update README.md Fix matplotlib Cheatsheets link: https://github.com/matplotlib/cheatsheets Current link returns a Page not found error. --- 3-Data-Visualization/09-visualization-quantities/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3-Data-Visualization/09-visualization-quantities/README.md b/3-Data-Visualization/09-visualization-quantities/README.md index c8d2c929..10c62ba5 100644 --- a/3-Data-Visualization/09-visualization-quantities/README.md +++ b/3-Data-Visualization/09-visualization-quantities/README.md @@ -21,7 +21,7 @@ An excellent library to create both simple and sophisticated plots and charts of 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. -✅ 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). +✅ There are very good 'cheat sheets' available for Matplotlib [here](https://github.com/matplotlib/cheatsheets). ## Build a line plot about bird wingspan values From e921483f41053dc6580080ef3c1d587a344e165b Mon Sep 17 00:00:00 2001 From: Mohamad Jaallouk Date: Fri, 19 Nov 2021 19:26:24 +0100 Subject: [PATCH 4/9] Update README.md Repeated word --- 3-Data-Visualization/09-visualization-quantities/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3-Data-Visualization/09-visualization-quantities/README.md b/3-Data-Visualization/09-visualization-quantities/README.md index c8d2c929..fcd59925 100644 --- a/3-Data-Visualization/09-visualization-quantities/README.md +++ b/3-Data-Visualization/09-visualization-quantities/README.md @@ -146,7 +146,7 @@ This bar chart, however, is unreadable because there is too much non-grouped dat Filter your data to include only the bird's category. -✅ Notice that that you use Pandas to manage the data, and then let Matplotlib do the charting. +✅ Notice that you use Pandas to manage the data, and then let Matplotlib do the charting. Since there are many categories, you can display this chart vertically and tweak its height to account for all the data: From 0d68b53eae0f4c7d13b8777da0c666837ae1a0cf Mon Sep 17 00:00:00 2001 From: Frederick Legaspi Date: Tue, 23 Nov 2021 11:45:17 -0500 Subject: [PATCH 5/9] Update README.md Updated Cheatsheets link --- 3-Data-Visualization/09-visualization-quantities/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3-Data-Visualization/09-visualization-quantities/README.md b/3-Data-Visualization/09-visualization-quantities/README.md index 10c62ba5..2ea1f583 100644 --- a/3-Data-Visualization/09-visualization-quantities/README.md +++ b/3-Data-Visualization/09-visualization-quantities/README.md @@ -21,7 +21,7 @@ An excellent library to create both simple and sophisticated plots and charts of 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. -✅ There are very good 'cheat sheets' available for Matplotlib [here](https://github.com/matplotlib/cheatsheets). +✅ There are very good 'cheat sheets' available for Matplotlib [here](https://matplotlib.org/cheatsheets/cheatsheets.pdf). ## Build a line plot about bird wingspan values From 5be4e87808f9920f1a1454ac12eee346e684da55 Mon Sep 17 00:00:00 2001 From: Frederick Legaspi Date: Tue, 23 Nov 2021 11:54:26 -0500 Subject: [PATCH 6/9] Update README.es.md Cheat sheets link is returning a Page Not Found error. Updated Cheat sheets Link: https://matplotlib.org/cheatsheets/cheatsheets.pdf --- .../09-visualization-quantities/translations/README.es.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/3-Data-Visualization/09-visualization-quantities/translations/README.es.md b/3-Data-Visualization/09-visualization-quantities/translations/README.es.md index 80167cf5..7a1aa0b0 100644 --- a/3-Data-Visualization/09-visualization-quantities/translations/README.es.md +++ b/3-Data-Visualization/09-visualization-quantities/translations/README.es.md @@ -21,7 +21,7 @@ Una excelente librería para crear gráficos tanto simples como sofisticados de 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. -✅ 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). +✅ Hay muy buenas "hojas de trucos" disponibles para Matplotlib [aquí](https://matplotlib.org/cheatsheets/cheatsheets.pdf). ## Construir un gráfico de líneas sobre los valores de la envergadura de las aves @@ -203,4 +203,4 @@ Este conjunto de datos sobre aves ofrece una gran cantidad de información sobre 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. ## Asignación -[Líneas, dispersiones y barras](assignment.es.md) \ No newline at end of file +[Líneas, dispersiones y barras](assignment.es.md) From 8008939ba73d3bf4f9b2667d4f0bff4685dd6bd0 Mon Sep 17 00:00:00 2001 From: Frederick Legaspi Date: Tue, 23 Nov 2021 11:56:15 -0500 Subject: [PATCH 7/9] Update README.hi.md Cheat sheets link is returning a Page Not Found error. Updated Cheat sheets Link: https://matplotlib.org/cheatsheets/cheatsheets.pdf --- .../09-visualization-quantities/translations/README.hi.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3-Data-Visualization/09-visualization-quantities/translations/README.hi.md b/3-Data-Visualization/09-visualization-quantities/translations/README.hi.md index d0745bfc..77c3d1d0 100644 --- a/3-Data-Visualization/09-visualization-quantities/translations/README.hi.md +++ b/3-Data-Visualization/09-visualization-quantities/translations/README.hi.md @@ -21,7 +21,7 @@ यदि आपके पास एक डेटासेट है और यह पता लगाने की आवश्यकता है कि किसी दिए गए आइटम में से कितना शामिल है, तो आपके पास सबसे पहले कार्यों में से एक इसके मूल्यों का निरीक्षण करना होगा। -✅ माटप्लोटलिब के लिए बहुत अच्छी 'चीट शीट' उपलब्ध हैं [here](https://github.com/matplotlib/cheatsheets/blob/master/cheatsheets-1.png) and [here](https://github.com/matplotlib/cheatsheets/blob/master/cheatsheets-2.png). +✅ माटप्लोटलिब के लिए बहुत अच्छी 'चीट शीट' उपलब्ध हैं [here](https://matplotlib.org/cheatsheets/cheatsheets.pdf). ## बर्ड विंगस्पैन मूल्यों के बारे में एक लाइन प्लॉट बनाएं From 85ece21638c17003af6dbb0dbacc49aee498effc Mon Sep 17 00:00:00 2001 From: Frederick Legaspi Date: Tue, 23 Nov 2021 11:58:10 -0500 Subject: [PATCH 8/9] Update README.ko.md Cheat sheets link is returning a Page Not Found error. Updated Cheat sheets Link: https://matplotlib.org/cheatsheets/cheatsheets.pdf --- .../09-visualization-quantities/translations/README.ko.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3-Data-Visualization/09-visualization-quantities/translations/README.ko.md b/3-Data-Visualization/09-visualization-quantities/translations/README.ko.md index 769d007d..8951a9d9 100644 --- a/3-Data-Visualization/09-visualization-quantities/translations/README.ko.md +++ b/3-Data-Visualization/09-visualization-quantities/translations/README.ko.md @@ -21,7 +21,7 @@ 데이터 세트가 있고 주어진 항목이 얼마나 포함되어 있는지 확인해야 하는 경우에, 가장 먼저 처리해야 하는 작업 중 하나는 해당 값을 검사하는 것입니다. -✅ Matplotlib에 사용할 수 있는 매우 좋은 '치트 시트'가 있습니다. [here](https://github.com/matplotlib/cheatsheets/blob/master/cheatsheets-1.png) and [here](https://github.com/matplotlib/cheatsheets/blob/master/cheatsheets-2.png). +✅ Matplotlib에 사용할 수 있는 매우 좋은 '치트 시트'가 있습니다. [here](https://matplotlib.org/cheatsheets/cheatsheets.pdf). ## 새 날개 길이 값에 대한 선 그래프 작성하기 From 6ea72d4d0556501f801dfd85d7b3621d38242e8e Mon Sep 17 00:00:00 2001 From: Frederick Legaspi Date: Tue, 23 Nov 2021 12:00:02 -0500 Subject: [PATCH 9/9] Update README.pt-br.md Cheat sheets link is returning a Page Not Found error. Updated Cheat sheets Link: https://matplotlib.org/cheatsheets/cheatsheets.pdf --- .../09-visualization-quantities/translations/README.pt-br.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3-Data-Visualization/09-visualization-quantities/translations/README.pt-br.md b/3-Data-Visualization/09-visualization-quantities/translations/README.pt-br.md index f0bf7bf8..03f10066 100644 --- a/3-Data-Visualization/09-visualization-quantities/translations/README.pt-br.md +++ b/3-Data-Visualization/09-visualization-quantities/translations/README.pt-br.md @@ -21,7 +21,7 @@ Uma biblioteca excelente para criar tanto gráficos simples como sofisticados e 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. -✅ 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). +✅ Existem dicas ('cheat sheets') ótimas disponíveis para o Matplotlib [aqui](https://matplotlib.org/cheatsheets/cheatsheets.pdf). ## Construindo um gráfico de linhas sobre os valores de envergadura de aves