| ](../../sketchnotes/09-Visualizing-Quantities.png)|
| ](../../../sketchnotes/09-Visualizing-Quantities.png)|
|:---:|
|:---:|
| Visualizando quantidades - _Sketchnote por [@nitya](https://twitter.com/nitya)_ |
| Visualizando quantidades - _Sketchnote por [@nitya](https://twitter.com/nitya)_ |
@ -53,7 +53,7 @@ Vamos começar plotando alguns dados numéricos com um simples gráfico de linha
wingspan = birds['MaxWingspan']
wingspan = birds['MaxWingspan']
wingspan.plot()
wingspan.plot()
```
```


O que é possível perceber imediatamente? Aparentemente existe pelo menos um outlier - e que envergadura! Uma envergadura de 2300 centímetros equivale a 23 metros - têm pterodáctilos voando em Minnesota? Vamos investigar.
O que é possível perceber imediatamente? Aparentemente existe pelo menos um outlier - e que envergadura! Uma envergadura de 2300 centímetros equivale a 23 metros - têm pterodáctilos voando em Minnesota? Vamos investigar.
@ -73,7 +73,7 @@ plt.plot(x, y)
plt.show()
plt.show()
```
```


Mesmo com a rotação das labels em 45 graus, existem muitos para ler. Vamos tentar outra estratégia: identificar somente os outliers e colocar as labels dentro do gráfico. Você pode usarj um gráfico de dispersão para abrir mais espaço para identificação:
Mesmo com a rotação das labels em 45 graus, existem muitos para ler. Vamos tentar outra estratégia: identificar somente os outliers e colocar as labels dentro do gráfico. Você pode usarj um gráfico de dispersão para abrir mais espaço para identificação:
@ -96,7 +96,7 @@ O que aconteceu aqui? Você usou `tick_params` para esconder as labels debaixo e
O que você descobriu?
O que você descobriu?


## Filtrar seus dados
## Filtrar seus dados
@ -117,7 +117,7 @@ plt.show()
By filtering out outliers, your data is now more cohesive and understandable.
By filtering out outliers, your data is now more cohesive and understandable.


Now that we have a cleaner dataset at least in terms of wingspan, let's discover more about these birds.
Now that we have a cleaner dataset at least in terms of wingspan, let's discover more about these birds.
@ -143,7 +143,7 @@ birds.plot(x='Category',
title='Birds of Minnesota')
title='Birds of Minnesota')
```
```


This bar chart, however, is unreadable because there is too much non-grouped data. You need to select only the data that you want to plot, so let's look at the length of birds based on their category.
This bar chart, however, is unreadable because there is too much non-grouped data. You need to select only the data that you want to plot, so let's look at the length of birds based on their category.


This bar chart shows a good view of the number of birds in each category. In a blink of an eye, you see that the largest number of birds in this region are in the Ducks/Geese/Waterfowl category. Minnesota is the 'land of 10,000 lakes' so this isn't surprising!
This bar chart shows a good view of the number of birds in each category. In a blink of an eye, you see that the largest number of birds in this region are in the Ducks/Geese/Waterfowl category. Minnesota is the 'land of 10,000 lakes' so this isn't surprising!
Nothing is surprising here: hummingbirds have the least MaxLength compared to Pelicans or Geese. It's good when data makes logical sense!
Nothing is surprising here: hummingbirds have the least MaxLength compared to Pelicans or Geese. It's good when data makes logical sense!
@ -192,7 +192,7 @@ plt.show()
```
```
In this plot, you can see the range per bird category of the Minimum Length and Maximum length. You can safely say that, given this data, the bigger the bird, the larger its length range. Fascinating!
In this plot, you can see the range per bird category of the Minimum Length and Maximum length. You can safely say that, given this data, the bigger the bird, the larger its length range. Fascinating!