diff --git a/Projeto_Final.ipynb b/Projeto_Final.ipynb
new file mode 100644
index 0000000..0bc17da
--- /dev/null
+++ b/Projeto_Final.ipynb
@@ -0,0 +1,4732 @@
+{
+ "nbformat": 4,
+ "nbformat_minor": 0,
+ "metadata": {
+ "colab": {
+ "provenance": [],
+ "include_colab_link": true
+ },
+ "kernelspec": {
+ "name": "python3",
+ "display_name": "Python 3"
+ },
+ "language_info": {
+ "name": "python"
+ }
+ },
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "id": "view-in-github",
+ "colab_type": "text"
+ },
+ "source": [
+ " "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "# **Análise de Dados do Mês de Setembro sobre as Queimadas no Distrito Federal e em São Paulo**\n",
+ "\n",
+ "As queimadas têm se tornado um problema crescente no Brasil, especialmente as regiões estudadas neste projeto, no Distrito Federal e em São Paulo, afetando a saúde pública e a biodiversidade. Este projeto visa investigar as ocorrências de queimadas nessas regiões, analisando dados sobre Número de dias sem chuva, Risco de fogo e Precipitação.\n",
+ "\n",
+ "Através de análises estatísticas e visualizações feitas com base nos dados do mês de setembro, buscamos identificar padrões que esclareçam a relação entre o número de dias sem chuva, o risco de fogo e as precipitações com as queimadas nessas regiões. Nosso objetivo é contribuir para a conscientização e oferecer subsídios para políticas públicas que visem a mitigação desse problema."
+ ],
+ "metadata": {
+ "id": "WECcPpEyZaAa"
+ }
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "# Base de Dados utilizado\n"
+ ],
+ "metadata": {
+ "id": "eiBf2GYMBcfB"
+ }
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "Dados de Queimadas: https://drive.google.com/file/d/1S16NonMM5GmUH_aPeJT-vCc31hcuST_b/view?usp=drive_link\n",
+ "\n",
+ "\n",
+ "\n",
+ "\n",
+ "---\n",
+ "\n"
+ ],
+ "metadata": {
+ "id": "AaEcnaPsB87B"
+ }
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "# Importação inicial\n",
+ "\n",
+ "* As bibliotecas NumPy (np) e Pandas (pd) são importadas para facilitar a manipulação de arrays e a análise de dados em formato tabular.\n"
+ ],
+ "metadata": {
+ "id": "-XufaDcaT-ft"
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "metadata": {
+ "id": "GMW2vrbFxYo7"
+ },
+ "outputs": [],
+ "source": [
+ "import numpy as np\n",
+ "import pandas as pd\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "# Banco de dados sobre Queimadas\n",
+ "\n",
+ "* O comando pd.read_csv é utilizado para ler o arquivo CSV localizado em \"/content/focos_mensal_br_202409.csv\" e armazenar os dados em um DataFrame chamado dfquei.\n",
+ "\n",
+ "* O comando dfquei exibe a estrutura e as primeiras linhas do DataFrame, permitindo uma visualização inicial dos dados importados."
+ ],
+ "metadata": {
+ "id": "337wULLxMoNl"
+ }
+ },
+ {
+ "cell_type": "code",
+ "source": [
+ "# Comando para leitura do Banco de Dados selecionado\n",
+ "\n",
+ "dfquei = pd.read_csv(\"/content/focos_mensal_br_202409.csv\")"
+ ],
+ "metadata": {
+ "collapsed": true,
+ "id": "yizWOGUq9nT2"
+ },
+ "execution_count": 2,
+ "outputs": []
+ },
+ {
+ "cell_type": "code",
+ "source": [
+ "# Visualização inicial da base\n",
+ "\n",
+ "dfquei"
+ ],
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 617
+ },
+ "id": "RV9UO9H8KMuk",
+ "outputId": "9e9776aa-6abe-416f-9e43-9afda40c824f"
+ },
+ "execution_count": 3,
+ "outputs": [
+ {
+ "output_type": "execute_result",
+ "data": {
+ "text/plain": [
+ " id lat lon \\\n",
+ "0 4d9dd1a4-b0a7-348b-9eac-481ad6728002 -14.9600 -58.8200 \n",
+ "1 8e84b5cb-8393-36e8-b2f3-7d20cd72cf7b -14.9900 -58.8400 \n",
+ "2 04af82ca-c4d8-37ee-bace-961312afebfa -10.6400 -57.8200 \n",
+ "3 cd695f4e-657b-3f09-bc88-9068cdbc79fb -10.6300 -57.7400 \n",
+ "4 d0478035-87d6-353a-833f-83b8deeba46b -10.6700 -57.8300 \n",
+ "... ... ... ... \n",
+ "111026 1ab31c25-52a1-3dab-91a9-98a566240b2f -9.2307 -54.8726 \n",
+ "111027 fb3609ce-2594-35f9-820c-5cfb68d3bead -9.2397 -60.4063 \n",
+ "111028 6d0f9a44-e492-3d88-b5bd-b011f6a244b7 -9.2176 -60.9073 \n",
+ "111029 ff650feb-05f7-3675-86b5-a528ae0c5e1d -9.2398 -60.3871 \n",
+ "111030 94da8d2a-3095-367c-ae36-391159ccedf7 -9.2124 -54.8335 \n",
+ "\n",
+ " data_hora_gmt satelite municipio estado pais \\\n",
+ "0 2024-09-01 00:04:01 MSG-03 BARRA DO BUGRES MATO GROSSO Brasil \n",
+ "1 2024-09-01 00:04:01 MSG-03 BARRA DO BUGRES MATO GROSSO Brasil \n",
+ "2 2024-09-01 00:04:26 MSG-03 JUARA MATO GROSSO Brasil \n",
+ "3 2024-09-01 00:04:26 MSG-03 JUARA MATO GROSSO Brasil \n",
+ "4 2024-09-01 00:04:26 MSG-03 JUARA MATO GROSSO Brasil \n",
+ "... ... ... ... ... ... \n",
+ "111026 2024-09-01 18:55:59 GOES-16 NOVO PROGRESSO PARÁ Brasil \n",
+ "111027 2024-09-01 18:55:59 GOES-16 COLNIZA MATO GROSSO Brasil \n",
+ "111028 2024-09-01 18:55:59 GOES-16 COLNIZA MATO GROSSO Brasil \n",
+ "111029 2024-09-01 18:55:59 GOES-16 COLNIZA MATO GROSSO Brasil \n",
+ "111030 2024-09-01 18:55:59 GOES-16 NOVO PROGRESSO PARÁ Brasil \n",
+ "\n",
+ " municipio_id estado_id pais_id numero_dias_sem_chuva precipitacao \\\n",
+ "0 5101704 51.0 33.0 14.0 0.0 \n",
+ "1 5101704 51.0 33.0 14.0 0.0 \n",
+ "2 5105101 51.0 33.0 89.0 0.0 \n",
+ "3 5105101 51.0 33.0 89.0 0.0 \n",
+ "4 5105101 51.0 33.0 89.0 0.0 \n",
+ "... ... ... ... ... ... \n",
+ "111026 1505031 15.0 33.0 117.0 0.0 \n",
+ "111027 5103254 51.0 33.0 100.0 0.0 \n",
+ "111028 5103254 51.0 33.0 47.0 0.0 \n",
+ "111029 5103254 51.0 33.0 100.0 0.0 \n",
+ "111030 1505031 NaN NaN NaN NaN \n",
+ "\n",
+ " risco_fogo bioma frp \n",
+ "0 1.0 Cerrado NaN \n",
+ "1 1.0 Cerrado NaN \n",
+ "2 1.0 Amazônia NaN \n",
+ "3 1.0 Amazônia NaN \n",
+ "4 1.0 Amazônia NaN \n",
+ "... ... ... ... \n",
+ "111026 1.0 Amazônia 115.9 \n",
+ "111027 1.0 Amazônia 81.5 \n",
+ "111028 1.0 Amazônia 119.0 \n",
+ "111029 1.0 Amazônia 144.2 \n",
+ "111030 NaN NaN NaN \n",
+ "\n",
+ "[111031 rows x 16 columns]"
+ ],
+ "text/html": [
+ "\n",
+ "
\n",
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " id \n",
+ " lat \n",
+ " lon \n",
+ " data_hora_gmt \n",
+ " satelite \n",
+ " municipio \n",
+ " estado \n",
+ " pais \n",
+ " municipio_id \n",
+ " estado_id \n",
+ " pais_id \n",
+ " numero_dias_sem_chuva \n",
+ " precipitacao \n",
+ " risco_fogo \n",
+ " bioma \n",
+ " frp \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " 4d9dd1a4-b0a7-348b-9eac-481ad6728002 \n",
+ " -14.9600 \n",
+ " -58.8200 \n",
+ " 2024-09-01 00:04:01 \n",
+ " MSG-03 \n",
+ " BARRA DO BUGRES \n",
+ " MATO GROSSO \n",
+ " Brasil \n",
+ " 5101704 \n",
+ " 51.0 \n",
+ " 33.0 \n",
+ " 14.0 \n",
+ " 0.0 \n",
+ " 1.0 \n",
+ " Cerrado \n",
+ " NaN \n",
+ " \n",
+ " \n",
+ " 1 \n",
+ " 8e84b5cb-8393-36e8-b2f3-7d20cd72cf7b \n",
+ " -14.9900 \n",
+ " -58.8400 \n",
+ " 2024-09-01 00:04:01 \n",
+ " MSG-03 \n",
+ " BARRA DO BUGRES \n",
+ " MATO GROSSO \n",
+ " Brasil \n",
+ " 5101704 \n",
+ " 51.0 \n",
+ " 33.0 \n",
+ " 14.0 \n",
+ " 0.0 \n",
+ " 1.0 \n",
+ " Cerrado \n",
+ " NaN \n",
+ " \n",
+ " \n",
+ " 2 \n",
+ " 04af82ca-c4d8-37ee-bace-961312afebfa \n",
+ " -10.6400 \n",
+ " -57.8200 \n",
+ " 2024-09-01 00:04:26 \n",
+ " MSG-03 \n",
+ " JUARA \n",
+ " MATO GROSSO \n",
+ " Brasil \n",
+ " 5105101 \n",
+ " 51.0 \n",
+ " 33.0 \n",
+ " 89.0 \n",
+ " 0.0 \n",
+ " 1.0 \n",
+ " Amazônia \n",
+ " NaN \n",
+ " \n",
+ " \n",
+ " 3 \n",
+ " cd695f4e-657b-3f09-bc88-9068cdbc79fb \n",
+ " -10.6300 \n",
+ " -57.7400 \n",
+ " 2024-09-01 00:04:26 \n",
+ " MSG-03 \n",
+ " JUARA \n",
+ " MATO GROSSO \n",
+ " Brasil \n",
+ " 5105101 \n",
+ " 51.0 \n",
+ " 33.0 \n",
+ " 89.0 \n",
+ " 0.0 \n",
+ " 1.0 \n",
+ " Amazônia \n",
+ " NaN \n",
+ " \n",
+ " \n",
+ " 4 \n",
+ " d0478035-87d6-353a-833f-83b8deeba46b \n",
+ " -10.6700 \n",
+ " -57.8300 \n",
+ " 2024-09-01 00:04:26 \n",
+ " MSG-03 \n",
+ " JUARA \n",
+ " MATO GROSSO \n",
+ " Brasil \n",
+ " 5105101 \n",
+ " 51.0 \n",
+ " 33.0 \n",
+ " 89.0 \n",
+ " 0.0 \n",
+ " 1.0 \n",
+ " Amazônia \n",
+ " NaN \n",
+ " \n",
+ " \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " \n",
+ " \n",
+ " 111026 \n",
+ " 1ab31c25-52a1-3dab-91a9-98a566240b2f \n",
+ " -9.2307 \n",
+ " -54.8726 \n",
+ " 2024-09-01 18:55:59 \n",
+ " GOES-16 \n",
+ " NOVO PROGRESSO \n",
+ " PARÁ \n",
+ " Brasil \n",
+ " 1505031 \n",
+ " 15.0 \n",
+ " 33.0 \n",
+ " 117.0 \n",
+ " 0.0 \n",
+ " 1.0 \n",
+ " Amazônia \n",
+ " 115.9 \n",
+ " \n",
+ " \n",
+ " 111027 \n",
+ " fb3609ce-2594-35f9-820c-5cfb68d3bead \n",
+ " -9.2397 \n",
+ " -60.4063 \n",
+ " 2024-09-01 18:55:59 \n",
+ " GOES-16 \n",
+ " COLNIZA \n",
+ " MATO GROSSO \n",
+ " Brasil \n",
+ " 5103254 \n",
+ " 51.0 \n",
+ " 33.0 \n",
+ " 100.0 \n",
+ " 0.0 \n",
+ " 1.0 \n",
+ " Amazônia \n",
+ " 81.5 \n",
+ " \n",
+ " \n",
+ " 111028 \n",
+ " 6d0f9a44-e492-3d88-b5bd-b011f6a244b7 \n",
+ " -9.2176 \n",
+ " -60.9073 \n",
+ " 2024-09-01 18:55:59 \n",
+ " GOES-16 \n",
+ " COLNIZA \n",
+ " MATO GROSSO \n",
+ " Brasil \n",
+ " 5103254 \n",
+ " 51.0 \n",
+ " 33.0 \n",
+ " 47.0 \n",
+ " 0.0 \n",
+ " 1.0 \n",
+ " Amazônia \n",
+ " 119.0 \n",
+ " \n",
+ " \n",
+ " 111029 \n",
+ " ff650feb-05f7-3675-86b5-a528ae0c5e1d \n",
+ " -9.2398 \n",
+ " -60.3871 \n",
+ " 2024-09-01 18:55:59 \n",
+ " GOES-16 \n",
+ " COLNIZA \n",
+ " MATO GROSSO \n",
+ " Brasil \n",
+ " 5103254 \n",
+ " 51.0 \n",
+ " 33.0 \n",
+ " 100.0 \n",
+ " 0.0 \n",
+ " 1.0 \n",
+ " Amazônia \n",
+ " 144.2 \n",
+ " \n",
+ " \n",
+ " 111030 \n",
+ " 94da8d2a-3095-367c-ae36-391159ccedf7 \n",
+ " -9.2124 \n",
+ " -54.8335 \n",
+ " 2024-09-01 18:55:59 \n",
+ " GOES-16 \n",
+ " NOVO PROGRESSO \n",
+ " PARÁ \n",
+ " Brasil \n",
+ " 1505031 \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " NaN \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
111031 rows × 16 columns
\n",
+ "
\n",
+ "
\n",
+ "
\n"
+ ],
+ "application/vnd.google.colaboratory.intrinsic+json": {
+ "type": "dataframe",
+ "variable_name": "dfquei"
+ }
+ },
+ "metadata": {},
+ "execution_count": 3
+ }
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "# Visualização dos Conteúdos da Base\n",
+ "\n",
+ "* O método describe() é chamado no DataFrame dfquei para gerar estatísticas descritivas das colunas numéricas. Ele fornece informações como contagem, média, desvio padrão, valores mínimo e máximo, e quartis, oferecendo uma visão geral das características estatísticas dos dados."
+ ],
+ "metadata": {
+ "id": "zcFfc9bHPlKu"
+ }
+ },
+ {
+ "cell_type": "code",
+ "source": [
+ "# Visualização dos conteúdos da base\n",
+ "\n",
+ "dfquei.describe()"
+ ],
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 300
+ },
+ "id": "Sf5ut4elcHlu",
+ "outputId": "978bc1f1-515d-465a-d0b8-8b54d8c6a67d"
+ },
+ "execution_count": 4,
+ "outputs": [
+ {
+ "output_type": "execute_result",
+ "data": {
+ "text/plain": [
+ " lat lon municipio_id estado_id pais_id \\\n",
+ "count 111031.000000 111031.000000 1.110310e+05 111030.000000 111030.0 \n",
+ "mean -10.231344 -54.444487 2.902124e+06 28.957291 33.0 \n",
+ "std 4.352100 6.085547 1.683831e+06 16.832051 0.0 \n",
+ "min -31.829030 -73.129160 1.100015e+06 11.000000 33.0 \n",
+ "25% -12.282790 -58.335945 1.503606e+06 15.000000 33.0 \n",
+ "50% -9.145700 -54.845090 1.718865e+06 17.000000 33.0 \n",
+ "75% -7.176560 -50.613295 5.103106e+06 51.000000 33.0 \n",
+ "max 2.294990 -34.905360 5.300108e+06 53.000000 33.0 \n",
+ "\n",
+ " numero_dias_sem_chuva precipitacao risco_fogo frp \n",
+ "count 111030.000000 111030.000000 111030.000000 105500.000000 \n",
+ "mean 46.358939 0.016214 -5.171398 30.752008 \n",
+ "std 66.972902 0.243563 78.188672 64.096911 \n",
+ "min -999.000000 0.000000 -999.000000 0.000000 \n",
+ "25% 15.000000 0.000000 1.000000 2.900000 \n",
+ "50% 24.000000 0.000000 1.000000 7.900000 \n",
+ "75% 92.000000 0.000000 1.000000 27.000000 \n",
+ "max 120.000000 10.860000 1.000000 2206.200000 "
+ ],
+ "text/html": [
+ "\n",
+ " \n",
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " lat \n",
+ " lon \n",
+ " municipio_id \n",
+ " estado_id \n",
+ " pais_id \n",
+ " numero_dias_sem_chuva \n",
+ " precipitacao \n",
+ " risco_fogo \n",
+ " frp \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " count \n",
+ " 111031.000000 \n",
+ " 111031.000000 \n",
+ " 1.110310e+05 \n",
+ " 111030.000000 \n",
+ " 111030.0 \n",
+ " 111030.000000 \n",
+ " 111030.000000 \n",
+ " 111030.000000 \n",
+ " 105500.000000 \n",
+ " \n",
+ " \n",
+ " mean \n",
+ " -10.231344 \n",
+ " -54.444487 \n",
+ " 2.902124e+06 \n",
+ " 28.957291 \n",
+ " 33.0 \n",
+ " 46.358939 \n",
+ " 0.016214 \n",
+ " -5.171398 \n",
+ " 30.752008 \n",
+ " \n",
+ " \n",
+ " std \n",
+ " 4.352100 \n",
+ " 6.085547 \n",
+ " 1.683831e+06 \n",
+ " 16.832051 \n",
+ " 0.0 \n",
+ " 66.972902 \n",
+ " 0.243563 \n",
+ " 78.188672 \n",
+ " 64.096911 \n",
+ " \n",
+ " \n",
+ " min \n",
+ " -31.829030 \n",
+ " -73.129160 \n",
+ " 1.100015e+06 \n",
+ " 11.000000 \n",
+ " 33.0 \n",
+ " -999.000000 \n",
+ " 0.000000 \n",
+ " -999.000000 \n",
+ " 0.000000 \n",
+ " \n",
+ " \n",
+ " 25% \n",
+ " -12.282790 \n",
+ " -58.335945 \n",
+ " 1.503606e+06 \n",
+ " 15.000000 \n",
+ " 33.0 \n",
+ " 15.000000 \n",
+ " 0.000000 \n",
+ " 1.000000 \n",
+ " 2.900000 \n",
+ " \n",
+ " \n",
+ " 50% \n",
+ " -9.145700 \n",
+ " -54.845090 \n",
+ " 1.718865e+06 \n",
+ " 17.000000 \n",
+ " 33.0 \n",
+ " 24.000000 \n",
+ " 0.000000 \n",
+ " 1.000000 \n",
+ " 7.900000 \n",
+ " \n",
+ " \n",
+ " 75% \n",
+ " -7.176560 \n",
+ " -50.613295 \n",
+ " 5.103106e+06 \n",
+ " 51.000000 \n",
+ " 33.0 \n",
+ " 92.000000 \n",
+ " 0.000000 \n",
+ " 1.000000 \n",
+ " 27.000000 \n",
+ " \n",
+ " \n",
+ " max \n",
+ " 2.294990 \n",
+ " -34.905360 \n",
+ " 5.300108e+06 \n",
+ " 53.000000 \n",
+ " 33.0 \n",
+ " 120.000000 \n",
+ " 10.860000 \n",
+ " 1.000000 \n",
+ " 2206.200000 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
\n",
+ "
\n"
+ ],
+ "application/vnd.google.colaboratory.intrinsic+json": {
+ "type": "dataframe",
+ "summary": "{\n \"name\": \"dfquei\",\n \"rows\": 8,\n \"fields\": [\n {\n \"column\": \"lat\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 39258.62145804914,\n \"min\": -31.82903,\n \"max\": 111031.0,\n \"num_unique_values\": 8,\n \"samples\": [\n -10.23134444334465,\n -9.1457,\n 111031.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"lon\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 39271.56552000405,\n \"min\": -73.12916,\n \"max\": 111031.0,\n \"num_unique_values\": 8,\n \"samples\": [\n -54.44448732608011,\n -54.84509,\n 111031.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"municipio_id\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 1877423.8846148339,\n \"min\": 111031.0,\n \"max\": 5300108.0,\n \"num_unique_values\": 8,\n \"samples\": [\n 2902123.5473156148,\n 1718865.0,\n 111031.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"estado_id\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 39245.29900548093,\n \"min\": 11.0,\n \"max\": 111030.0,\n \"num_unique_values\": 8,\n \"samples\": [\n 28.95729082230028,\n 17.0,\n 111030.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"pais_id\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 39245.03414628222,\n \"min\": 0.0,\n \"max\": 111030.0,\n \"num_unique_values\": 3,\n \"samples\": [\n 111030.0,\n 33.0,\n 0.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"numero_dias_sem_chuva\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 39288.853451933086,\n \"min\": -999.0,\n \"max\": 111030.0,\n \"num_unique_values\": 8,\n \"samples\": [\n 46.35893902548861,\n 24.0,\n 111030.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"precipitacao\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 39254.471506577414,\n \"min\": 0.0,\n \"max\": 111030.0,\n \"num_unique_values\": 5,\n \"samples\": [\n 0.016213816085742593,\n 10.86,\n 0.24356347364803746\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"risco_fogo\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 39303.20436173474,\n \"min\": -999.0,\n \"max\": 111030.0,\n \"num_unique_values\": 5,\n \"samples\": [\n -5.171397730343151,\n 1.0,\n 78.18867203412702\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"frp\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 37189.61261532726,\n \"min\": 0.0,\n \"max\": 105500.0,\n \"num_unique_values\": 8,\n \"samples\": [\n 30.752007582938386,\n 7.9,\n 105500.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}"
+ }
+ },
+ "metadata": {},
+ "execution_count": 4
+ }
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "# Tratamento de Dados\n",
+ "\n",
+ "* O comando dfquei.isnull().sum() é utilizado para verificar a existência de valores ausentes (NaN) no DataFrame dfquei. Ele retorna a soma de valores NaN em cada coluna, permitindo identificar a quantidade de dados faltantes e facilitando o tratamento dessas informações."
+ ],
+ "metadata": {
+ "id": "lwLP6KtEWXL9"
+ }
+ },
+ {
+ "cell_type": "code",
+ "source": [
+ "# Verificação da existência de linhas NaN e somando-as\n",
+ "\n",
+ "dfquei.isnull().sum()"
+ ],
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 586
+ },
+ "id": "nSrGr0lELkZu",
+ "outputId": "4fbb705d-2c83-467a-f7d9-c65d5d2133e5"
+ },
+ "execution_count": 5,
+ "outputs": [
+ {
+ "output_type": "execute_result",
+ "data": {
+ "text/plain": [
+ "id 0\n",
+ "lat 0\n",
+ "lon 0\n",
+ "data_hora_gmt 0\n",
+ "satelite 0\n",
+ "municipio 0\n",
+ "estado 0\n",
+ "pais 0\n",
+ "municipio_id 0\n",
+ "estado_id 1\n",
+ "pais_id 1\n",
+ "numero_dias_sem_chuva 1\n",
+ "precipitacao 1\n",
+ "risco_fogo 1\n",
+ "bioma 1\n",
+ "frp 5531\n",
+ "dtype: int64"
+ ],
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " id \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ " lat \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ " lon \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ " data_hora_gmt \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ " satelite \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ " municipio \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ " estado \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ " pais \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ " municipio_id \n",
+ " 0 \n",
+ " \n",
+ " \n",
+ " estado_id \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ " pais_id \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ " numero_dias_sem_chuva \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ " precipitacao \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ " risco_fogo \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ " bioma \n",
+ " 1 \n",
+ " \n",
+ " \n",
+ " frp \n",
+ " 5531 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
dtype: int64 "
+ ]
+ },
+ "metadata": {},
+ "execution_count": 5
+ }
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "# Exclusão de Valores NaN\n",
+ "\n",
+ "* O comando dfquei.dropna() é utilizado para remover todas as linhas do DataFrame dfquei que contêm valores ausentes (NaN). Essa operação resulta em um novo DataFrame sem dados faltantes, facilitando análises posteriores com informações completas. Note que, para que a alteração tenha efeito, o resultado deve ser atribuído de volta a dfquei ou a um novo DataFrame, já que dropna() não modifica o DataFrame original por padrão"
+ ],
+ "metadata": {
+ "id": "gs4mgRGhQdSU"
+ }
+ },
+ {
+ "cell_type": "code",
+ "source": [
+ "# Excluindo os Nan de toda a tabela\n",
+ "\n",
+ "dfquei.dropna()"
+ ],
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 617
+ },
+ "id": "BnyswqCou0zg",
+ "outputId": "ae5b8ced-744b-4e27-abde-fd89a732d4d0"
+ },
+ "execution_count": 6,
+ "outputs": [
+ {
+ "output_type": "execute_result",
+ "data": {
+ "text/plain": [
+ " id lat lon \\\n",
+ "14 b4cef1ac-95bb-37b1-ae86-b30573f92400 -2.6340 -48.0465 \n",
+ "15 e0e8b551-b0ca-37fe-a04c-bbdd2f1da255 -2.6526 -48.0244 \n",
+ "16 c4d983cc-07ff-3e4c-9f93-da13eed1187b -2.6525 -48.0460 \n",
+ "17 a469570c-8104-3a9c-9ec2-5cf6b99b1ddc -3.8717 -52.3999 \n",
+ "18 afcff067-c202-3a94-9c85-a961b7316731 -4.0480 -46.9475 \n",
+ "... ... ... ... \n",
+ "111025 1c0008bc-2ceb-3f1f-8042-8ede88b6305b -9.3352 -57.7349 \n",
+ "111026 1ab31c25-52a1-3dab-91a9-98a566240b2f -9.2307 -54.8726 \n",
+ "111027 fb3609ce-2594-35f9-820c-5cfb68d3bead -9.2397 -60.4063 \n",
+ "111028 6d0f9a44-e492-3d88-b5bd-b011f6a244b7 -9.2176 -60.9073 \n",
+ "111029 ff650feb-05f7-3675-86b5-a528ae0c5e1d -9.2398 -60.3871 \n",
+ "\n",
+ " data_hora_gmt satelite municipio estado pais \\\n",
+ "14 2024-09-01 00:05:21 GOES-16 TOMÉ-AÇU PARÁ Brasil \n",
+ "15 2024-09-01 00:05:21 GOES-16 IPIXUNA DO PARÁ PARÁ Brasil \n",
+ "16 2024-09-01 00:05:21 GOES-16 IPIXUNA DO PARÁ PARÁ Brasil \n",
+ "17 2024-09-01 00:05:28 GOES-16 ALTAMIRA PARÁ Brasil \n",
+ "18 2024-09-01 00:05:29 GOES-16 ITINGA DO MARANHÃO MARANHÃO Brasil \n",
+ "... ... ... ... ... ... \n",
+ "111025 2024-09-01 18:55:59 GOES-16 APIACÁS MATO GROSSO Brasil \n",
+ "111026 2024-09-01 18:55:59 GOES-16 NOVO PROGRESSO PARÁ Brasil \n",
+ "111027 2024-09-01 18:55:59 GOES-16 COLNIZA MATO GROSSO Brasil \n",
+ "111028 2024-09-01 18:55:59 GOES-16 COLNIZA MATO GROSSO Brasil \n",
+ "111029 2024-09-01 18:55:59 GOES-16 COLNIZA MATO GROSSO Brasil \n",
+ "\n",
+ " municipio_id estado_id pais_id numero_dias_sem_chuva precipitacao \\\n",
+ "14 1508001 15.0 33.0 5.0 0.0 \n",
+ "15 1503457 15.0 33.0 5.0 0.0 \n",
+ "16 1503457 15.0 33.0 5.0 0.0 \n",
+ "17 1500602 15.0 33.0 4.0 0.0 \n",
+ "18 2105427 21.0 33.0 20.0 0.0 \n",
+ "... ... ... ... ... ... \n",
+ "111025 5100805 51.0 33.0 26.0 0.0 \n",
+ "111026 1505031 15.0 33.0 117.0 0.0 \n",
+ "111027 5103254 51.0 33.0 100.0 0.0 \n",
+ "111028 5103254 51.0 33.0 47.0 0.0 \n",
+ "111029 5103254 51.0 33.0 100.0 0.0 \n",
+ "\n",
+ " risco_fogo bioma frp \n",
+ "14 0.89 Amazônia 70.0 \n",
+ "15 0.95 Amazônia 100.1 \n",
+ "16 0.90 Amazônia 120.7 \n",
+ "17 0.97 Amazônia 57.6 \n",
+ "18 1.00 Amazônia 71.2 \n",
+ "... ... ... ... \n",
+ "111025 1.00 Amazônia 88.6 \n",
+ "111026 1.00 Amazônia 115.9 \n",
+ "111027 1.00 Amazônia 81.5 \n",
+ "111028 1.00 Amazônia 119.0 \n",
+ "111029 1.00 Amazônia 144.2 \n",
+ "\n",
+ "[105500 rows x 16 columns]"
+ ],
+ "text/html": [
+ "\n",
+ " \n",
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " id \n",
+ " lat \n",
+ " lon \n",
+ " data_hora_gmt \n",
+ " satelite \n",
+ " municipio \n",
+ " estado \n",
+ " pais \n",
+ " municipio_id \n",
+ " estado_id \n",
+ " pais_id \n",
+ " numero_dias_sem_chuva \n",
+ " precipitacao \n",
+ " risco_fogo \n",
+ " bioma \n",
+ " frp \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 14 \n",
+ " b4cef1ac-95bb-37b1-ae86-b30573f92400 \n",
+ " -2.6340 \n",
+ " -48.0465 \n",
+ " 2024-09-01 00:05:21 \n",
+ " GOES-16 \n",
+ " TOMÉ-AÇU \n",
+ " PARÁ \n",
+ " Brasil \n",
+ " 1508001 \n",
+ " 15.0 \n",
+ " 33.0 \n",
+ " 5.0 \n",
+ " 0.0 \n",
+ " 0.89 \n",
+ " Amazônia \n",
+ " 70.0 \n",
+ " \n",
+ " \n",
+ " 15 \n",
+ " e0e8b551-b0ca-37fe-a04c-bbdd2f1da255 \n",
+ " -2.6526 \n",
+ " -48.0244 \n",
+ " 2024-09-01 00:05:21 \n",
+ " GOES-16 \n",
+ " IPIXUNA DO PARÁ \n",
+ " PARÁ \n",
+ " Brasil \n",
+ " 1503457 \n",
+ " 15.0 \n",
+ " 33.0 \n",
+ " 5.0 \n",
+ " 0.0 \n",
+ " 0.95 \n",
+ " Amazônia \n",
+ " 100.1 \n",
+ " \n",
+ " \n",
+ " 16 \n",
+ " c4d983cc-07ff-3e4c-9f93-da13eed1187b \n",
+ " -2.6525 \n",
+ " -48.0460 \n",
+ " 2024-09-01 00:05:21 \n",
+ " GOES-16 \n",
+ " IPIXUNA DO PARÁ \n",
+ " PARÁ \n",
+ " Brasil \n",
+ " 1503457 \n",
+ " 15.0 \n",
+ " 33.0 \n",
+ " 5.0 \n",
+ " 0.0 \n",
+ " 0.90 \n",
+ " Amazônia \n",
+ " 120.7 \n",
+ " \n",
+ " \n",
+ " 17 \n",
+ " a469570c-8104-3a9c-9ec2-5cf6b99b1ddc \n",
+ " -3.8717 \n",
+ " -52.3999 \n",
+ " 2024-09-01 00:05:28 \n",
+ " GOES-16 \n",
+ " ALTAMIRA \n",
+ " PARÁ \n",
+ " Brasil \n",
+ " 1500602 \n",
+ " 15.0 \n",
+ " 33.0 \n",
+ " 4.0 \n",
+ " 0.0 \n",
+ " 0.97 \n",
+ " Amazônia \n",
+ " 57.6 \n",
+ " \n",
+ " \n",
+ " 18 \n",
+ " afcff067-c202-3a94-9c85-a961b7316731 \n",
+ " -4.0480 \n",
+ " -46.9475 \n",
+ " 2024-09-01 00:05:29 \n",
+ " GOES-16 \n",
+ " ITINGA DO MARANHÃO \n",
+ " MARANHÃO \n",
+ " Brasil \n",
+ " 2105427 \n",
+ " 21.0 \n",
+ " 33.0 \n",
+ " 20.0 \n",
+ " 0.0 \n",
+ " 1.00 \n",
+ " Amazônia \n",
+ " 71.2 \n",
+ " \n",
+ " \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " ... \n",
+ " \n",
+ " \n",
+ " 111025 \n",
+ " 1c0008bc-2ceb-3f1f-8042-8ede88b6305b \n",
+ " -9.3352 \n",
+ " -57.7349 \n",
+ " 2024-09-01 18:55:59 \n",
+ " GOES-16 \n",
+ " APIACÁS \n",
+ " MATO GROSSO \n",
+ " Brasil \n",
+ " 5100805 \n",
+ " 51.0 \n",
+ " 33.0 \n",
+ " 26.0 \n",
+ " 0.0 \n",
+ " 1.00 \n",
+ " Amazônia \n",
+ " 88.6 \n",
+ " \n",
+ " \n",
+ " 111026 \n",
+ " 1ab31c25-52a1-3dab-91a9-98a566240b2f \n",
+ " -9.2307 \n",
+ " -54.8726 \n",
+ " 2024-09-01 18:55:59 \n",
+ " GOES-16 \n",
+ " NOVO PROGRESSO \n",
+ " PARÁ \n",
+ " Brasil \n",
+ " 1505031 \n",
+ " 15.0 \n",
+ " 33.0 \n",
+ " 117.0 \n",
+ " 0.0 \n",
+ " 1.00 \n",
+ " Amazônia \n",
+ " 115.9 \n",
+ " \n",
+ " \n",
+ " 111027 \n",
+ " fb3609ce-2594-35f9-820c-5cfb68d3bead \n",
+ " -9.2397 \n",
+ " -60.4063 \n",
+ " 2024-09-01 18:55:59 \n",
+ " GOES-16 \n",
+ " COLNIZA \n",
+ " MATO GROSSO \n",
+ " Brasil \n",
+ " 5103254 \n",
+ " 51.0 \n",
+ " 33.0 \n",
+ " 100.0 \n",
+ " 0.0 \n",
+ " 1.00 \n",
+ " Amazônia \n",
+ " 81.5 \n",
+ " \n",
+ " \n",
+ " 111028 \n",
+ " 6d0f9a44-e492-3d88-b5bd-b011f6a244b7 \n",
+ " -9.2176 \n",
+ " -60.9073 \n",
+ " 2024-09-01 18:55:59 \n",
+ " GOES-16 \n",
+ " COLNIZA \n",
+ " MATO GROSSO \n",
+ " Brasil \n",
+ " 5103254 \n",
+ " 51.0 \n",
+ " 33.0 \n",
+ " 47.0 \n",
+ " 0.0 \n",
+ " 1.00 \n",
+ " Amazônia \n",
+ " 119.0 \n",
+ " \n",
+ " \n",
+ " 111029 \n",
+ " ff650feb-05f7-3675-86b5-a528ae0c5e1d \n",
+ " -9.2398 \n",
+ " -60.3871 \n",
+ " 2024-09-01 18:55:59 \n",
+ " GOES-16 \n",
+ " COLNIZA \n",
+ " MATO GROSSO \n",
+ " Brasil \n",
+ " 5103254 \n",
+ " 51.0 \n",
+ " 33.0 \n",
+ " 100.0 \n",
+ " 0.0 \n",
+ " 1.00 \n",
+ " Amazônia \n",
+ " 144.2 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
105500 rows × 16 columns
\n",
+ "
\n",
+ "
\n",
+ "
\n"
+ ],
+ "application/vnd.google.colaboratory.intrinsic+json": {
+ "type": "dataframe"
+ }
+ },
+ "metadata": {},
+ "execution_count": 6
+ }
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "# Banco de Dados - SP\n",
+ "\n",
+ "Nesta seção, os dados do DataFrame dfquei são filtrados para criar dois novos DataFrames:\n",
+ "\n",
+ " dados_sp: Contém informações do estado de São Paulo, com as colunas estado, número de dias sem chuva, risco de fogo e precipitação.\n",
+ " dados_distf: Contém dados do Distrito Federal com as mesmas colunas.\n",
+ "\n",
+ "Em seguida, o método dropna() é aplicado a ambos os DataFrames para remover linhas com valores ausentes (NaN), garantindo dados completos para análises futuras."
+ ],
+ "metadata": {
+ "id": "H-X1RDjdUeyo"
+ }
+ },
+ {
+ "cell_type": "code",
+ "source": [
+ "# Separando os dados de cada estado, relacionando o estado com as colunas dias sem chuva, risco de fogo e precipitação\n",
+ "\n",
+ "dados_sp = dfquei[dfquei['estado'] == 'SÃO PAULO'][['estado', 'numero_dias_sem_chuva', 'risco_fogo', 'precipitacao']]\n",
+ "dados_distf = dfquei[dfquei['estado'] == 'DISTRITO FEDERAL'][['estado', 'numero_dias_sem_chuva', 'risco_fogo', 'precipitacao']]\n",
+ "\n",
+ "# Realizando drop nas variáveis criadas para descartar possibilidade de outros NaN\n",
+ "\n",
+ "dados_sp = dados_sp.dropna()\n",
+ "dados_distf = dados_distf.dropna()\n"
+ ],
+ "metadata": {
+ "collapsed": true,
+ "id": "95sJgN7XX_CJ"
+ },
+ "execution_count": 7,
+ "outputs": []
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "# Visualizando os Dados de SP\n",
+ "\n",
+ "* O método describe() é utilizado no DataFrame dados_sp para gerar estatísticas descritivas das colunas numéricas. Ele fornece informações como contagem, média, desvio padrão, valores mínimo e máximo, e quartis, oferecendo uma visão geral das características estatísticas dos dados relacionados ao estado de São Paulo."
+ ],
+ "metadata": {
+ "id": "fqEbZdpzRRNS"
+ }
+ },
+ {
+ "cell_type": "code",
+ "source": [
+ "# Visualizando os dados de SP\n",
+ "\n",
+ "dados_sp.describe()"
+ ],
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 300
+ },
+ "id": "Ls_6VQSDuxsF",
+ "outputId": "685ef4c7-30d7-46c5-9ecc-39a8a5a55b24"
+ },
+ "execution_count": 8,
+ "outputs": [
+ {
+ "output_type": "execute_result",
+ "data": {
+ "text/plain": [
+ " numero_dias_sem_chuva risco_fogo precipitacao\n",
+ "count 1696.000000 1696.000000 1696.000000\n",
+ "mean 31.440448 -55.052199 0.000177\n",
+ "std 51.785648 230.007628 0.004203\n",
+ "min -999.000000 -999.000000 0.000000\n",
+ "25% 7.000000 0.990000 0.000000\n",
+ "50% 7.000000 1.000000 0.000000\n",
+ "75% 7.000000 1.000000 0.000000\n",
+ "max 120.000000 1.000000 0.100000"
+ ],
+ "text/html": [
+ "\n",
+ " \n",
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " numero_dias_sem_chuva \n",
+ " risco_fogo \n",
+ " precipitacao \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " count \n",
+ " 1696.000000 \n",
+ " 1696.000000 \n",
+ " 1696.000000 \n",
+ " \n",
+ " \n",
+ " mean \n",
+ " 31.440448 \n",
+ " -55.052199 \n",
+ " 0.000177 \n",
+ " \n",
+ " \n",
+ " std \n",
+ " 51.785648 \n",
+ " 230.007628 \n",
+ " 0.004203 \n",
+ " \n",
+ " \n",
+ " min \n",
+ " -999.000000 \n",
+ " -999.000000 \n",
+ " 0.000000 \n",
+ " \n",
+ " \n",
+ " 25% \n",
+ " 7.000000 \n",
+ " 0.990000 \n",
+ " 0.000000 \n",
+ " \n",
+ " \n",
+ " 50% \n",
+ " 7.000000 \n",
+ " 1.000000 \n",
+ " 0.000000 \n",
+ " \n",
+ " \n",
+ " 75% \n",
+ " 7.000000 \n",
+ " 1.000000 \n",
+ " 0.000000 \n",
+ " \n",
+ " \n",
+ " max \n",
+ " 120.000000 \n",
+ " 1.000000 \n",
+ " 0.100000 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
\n",
+ "
\n"
+ ],
+ "application/vnd.google.colaboratory.intrinsic+json": {
+ "type": "dataframe",
+ "summary": "{\n \"name\": \"dados_sp\",\n \"rows\": 8,\n \"fields\": [\n {\n \"column\": \"numero_dias_sem_chuva\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 735.4835207478386,\n \"min\": -999.0,\n \"max\": 1696.0,\n \"num_unique_values\": 6,\n \"samples\": [\n 1696.0,\n 31.440448113207548,\n 120.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"risco_fogo\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 740.1201817778053,\n \"min\": -999.0,\n \"max\": 1696.0,\n \"num_unique_values\": 6,\n \"samples\": [\n 1696.0,\n -55.052199292452826,\n 1.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"precipitacao\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 599.6212794580932,\n \"min\": 0.0,\n \"max\": 1696.0,\n \"num_unique_values\": 5,\n \"samples\": [\n 0.0001768867924528302,\n 0.1,\n 0.004203309130596187\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}"
+ }
+ },
+ "metadata": {},
+ "execution_count": 8
+ }
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "# Removendo Números Negativos\n",
+ "\n",
+ "* Este trecho identifica linhas no DataFrame dados_sp com valores negativos nas colunas risco_fogo, numero_dias_sem_chuva e precipitacao. As expressões dados_sp[(dfquei['risco_fogo'] < 0)], dados_sp[(dfquei['numero_dias_sem_chuva'] < 0)] e dados_sp[(dfquei['precipitacao'] < 0)] retornam essas linhas, mas não as removem.\n"
+ ],
+ "metadata": {
+ "id": "__qh8tdKRljq"
+ }
+ },
+ {
+ "cell_type": "code",
+ "source": [
+ "# Removendo os números negativos encontrado em cada coluna\n",
+ "\n",
+ "dados_sp[(dfquei['risco_fogo'] < 0)]\n",
+ "dados_sp[(dfquei['numero_dias_sem_chuva'] < 0)]\n",
+ "dados_sp[(dfquei['precipitacao'] < 0)]"
+ ],
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 157
+ },
+ "id": "J3fdRd4sBg1o",
+ "outputId": "7c42d01a-aba1-41aa-ecad-b478d1d6b151"
+ },
+ "execution_count": 9,
+ "outputs": [
+ {
+ "output_type": "stream",
+ "name": "stderr",
+ "text": [
+ ":3: UserWarning: Boolean Series key will be reindexed to match DataFrame index.\n",
+ " dados_sp[(dfquei['risco_fogo'] < 0)]\n",
+ ":4: UserWarning: Boolean Series key will be reindexed to match DataFrame index.\n",
+ " dados_sp[(dfquei['numero_dias_sem_chuva'] < 0)]\n",
+ ":5: UserWarning: Boolean Series key will be reindexed to match DataFrame index.\n",
+ " dados_sp[(dfquei['precipitacao'] < 0)]\n"
+ ]
+ },
+ {
+ "output_type": "execute_result",
+ "data": {
+ "text/plain": [
+ "Empty DataFrame\n",
+ "Columns: [estado, numero_dias_sem_chuva, risco_fogo, precipitacao]\n",
+ "Index: []"
+ ],
+ "text/html": [
+ "\n",
+ " \n",
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " estado \n",
+ " numero_dias_sem_chuva \n",
+ " risco_fogo \n",
+ " precipitacao \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
\n",
+ "
\n"
+ ],
+ "application/vnd.google.colaboratory.intrinsic+json": {
+ "type": "dataframe",
+ "repr_error": "Out of range float values are not JSON compliant: nan"
+ }
+ },
+ "metadata": {},
+ "execution_count": 9
+ }
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "# Validando a Remoção dos Números Negativos\n",
+ "\n",
+ "* Neste trecho, os números negativos são removidos do DataFrame dados_sp sem prejudicar a estrutura da tabela. O método drop() é utilizado para excluir as linhas que contêm valores negativos nas colunas risco_fogo, numero_dias_sem_chuva e precipitacao, garantindo que apenas dados válidos permaneçam no DataFrame."
+ ],
+ "metadata": {
+ "id": "h4UMyEzPRyfM"
+ }
+ },
+ {
+ "cell_type": "code",
+ "source": [
+ "# Validando a remoção dos números negativos sem prejudicar a tabela\n",
+ "\n",
+ "dados_sp = dados_sp.drop(dados_sp[dfquei['risco_fogo'] < 0].index)\n",
+ "dados_sp = dados_sp.drop(dados_sp[dfquei['numero_dias_sem_chuva'] < 0].index)\n",
+ "dados_sp = dados_sp.drop(dados_sp[dfquei['precipitacao'] < 0].index)"
+ ],
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "cnXvzHy5CBtE",
+ "outputId": "83ca7af9-e27c-451c-c8b0-cd6f8fa7b1eb",
+ "collapsed": true
+ },
+ "execution_count": 10,
+ "outputs": [
+ {
+ "output_type": "stream",
+ "name": "stderr",
+ "text": [
+ ":3: UserWarning: Boolean Series key will be reindexed to match DataFrame index.\n",
+ " dados_sp = dados_sp.drop(dados_sp[dfquei['risco_fogo'] < 0].index)\n",
+ ":4: UserWarning: Boolean Series key will be reindexed to match DataFrame index.\n",
+ " dados_sp = dados_sp.drop(dados_sp[dfquei['numero_dias_sem_chuva'] < 0].index)\n",
+ ":5: UserWarning: Boolean Series key will be reindexed to match DataFrame index.\n",
+ " dados_sp = dados_sp.drop(dados_sp[dfquei['precipitacao'] < 0].index)\n"
+ ]
+ }
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "# Visualizando Dados de SP Após Tratamento\n",
+ "\n",
+ "* O método describe() é utilizado novamente no DataFrame dados_sp para gerar estatísticas descritivas das colunas numéricas após o tratamento. Esta visualização permite verificar a contagem, média, desvio padrão, valores mínimo e máximo, e quartis, fornecendo uma visão atualizada das características estatísticas dos dados limpos e válidos relacionados ao estado de São Paulo."
+ ],
+ "metadata": {
+ "id": "NA1w0i9hS0QP"
+ }
+ },
+ {
+ "cell_type": "code",
+ "source": [
+ "# Visualizando dados de SP após tratamento\n",
+ "\n",
+ "dados_sp.describe()"
+ ],
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 300
+ },
+ "id": "bZk203HVQEor",
+ "outputId": "4b2db34c-e6d4-43d2-9430-0f40d4eb3558"
+ },
+ "execution_count": 11,
+ "outputs": [
+ {
+ "output_type": "execute_result",
+ "data": {
+ "text/plain": [
+ " numero_dias_sem_chuva risco_fogo precipitacao\n",
+ "count 1600.000000 1600.000000 1600.000000\n",
+ "mean 33.112500 0.959969 0.000188\n",
+ "std 46.259767 0.113245 0.004327\n",
+ "min 6.000000 0.470000 0.000000\n",
+ "25% 7.000000 1.000000 0.000000\n",
+ "50% 7.000000 1.000000 0.000000\n",
+ "75% 7.000000 1.000000 0.000000\n",
+ "max 120.000000 1.000000 0.100000"
+ ],
+ "text/html": [
+ "\n",
+ " \n",
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " numero_dias_sem_chuva \n",
+ " risco_fogo \n",
+ " precipitacao \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " count \n",
+ " 1600.000000 \n",
+ " 1600.000000 \n",
+ " 1600.000000 \n",
+ " \n",
+ " \n",
+ " mean \n",
+ " 33.112500 \n",
+ " 0.959969 \n",
+ " 0.000188 \n",
+ " \n",
+ " \n",
+ " std \n",
+ " 46.259767 \n",
+ " 0.113245 \n",
+ " 0.004327 \n",
+ " \n",
+ " \n",
+ " min \n",
+ " 6.000000 \n",
+ " 0.470000 \n",
+ " 0.000000 \n",
+ " \n",
+ " \n",
+ " 25% \n",
+ " 7.000000 \n",
+ " 1.000000 \n",
+ " 0.000000 \n",
+ " \n",
+ " \n",
+ " 50% \n",
+ " 7.000000 \n",
+ " 1.000000 \n",
+ " 0.000000 \n",
+ " \n",
+ " \n",
+ " 75% \n",
+ " 7.000000 \n",
+ " 1.000000 \n",
+ " 0.000000 \n",
+ " \n",
+ " \n",
+ " max \n",
+ " 120.000000 \n",
+ " 1.000000 \n",
+ " 0.100000 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
\n",
+ "
\n"
+ ],
+ "application/vnd.google.colaboratory.intrinsic+json": {
+ "type": "dataframe",
+ "summary": "{\n \"name\": \"dados_sp\",\n \"rows\": 8,\n \"fields\": [\n {\n \"column\": \"numero_dias_sem_chuva\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 555.6032688341212,\n \"min\": 6.0,\n \"max\": 1600.0,\n \"num_unique_values\": 6,\n \"samples\": [\n 1600.0,\n 33.1125,\n 120.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"risco_fogo\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 565.4055470978985,\n \"min\": 0.11324509616674973,\n \"max\": 1600.0,\n \"num_unique_values\": 5,\n \"samples\": [\n 0.95996875,\n 1.0,\n 0.11324509616674973\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"precipitacao\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 565.6801472167415,\n \"min\": 0.0,\n \"max\": 1600.0,\n \"num_unique_values\": 5,\n \"samples\": [\n 0.00018750000000000003,\n 0.1,\n 0.00432741814970564\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}"
+ }
+ },
+ "metadata": {},
+ "execution_count": 11
+ }
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "\n",
+ "\n",
+ "---\n",
+ "\n"
+ ],
+ "metadata": {
+ "id": "Ugxx2oN9QSer"
+ }
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "# Banco de Dados - DF\n",
+ "\n",
+ "* O comando dados_distf exibe o DataFrame contendo os dados do Distrito Federal. Esta visualização permite analisar as informações filtradas, incluindo as colunas selecionadas, como estado, número de dias sem chuva, risco de fogo e precipitação, antes de realizar qualquer tratamento adicional."
+ ],
+ "metadata": {
+ "id": "cwh8JFPaUrfB"
+ }
+ },
+ {
+ "cell_type": "code",
+ "source": [
+ "# Visualizando dados de DF\n",
+ "\n",
+ "dados_distf"
+ ],
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 1000
+ },
+ "id": "XNLlavrqvIqg",
+ "outputId": "09aec4d4-4700-4df8-90ea-7303643a5951"
+ },
+ "execution_count": 12,
+ "outputs": [
+ {
+ "output_type": "execute_result",
+ "data": {
+ "text/plain": [
+ " estado numero_dias_sem_chuva risco_fogo precipitacao\n",
+ "2529 DISTRITO FEDERAL 113.0 1.0 0.0\n",
+ "14311 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "29115 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "29444 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "56416 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "56417 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "56422 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "56423 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "56424 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "56425 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "56426 DISTRITO FEDERAL 119.0 1.0 0.0\n",
+ "56427 DISTRITO FEDERAL 105.0 1.0 0.0\n",
+ "56428 DISTRITO FEDERAL 104.0 -999.0 0.0\n",
+ "56429 DISTRITO FEDERAL 76.0 -999.0 0.0\n",
+ "63039 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "63040 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "63041 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "63044 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "63045 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "63046 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "63047 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "63048 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "63049 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "79054 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "79055 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "79061 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "79062 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "79063 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "79064 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "79355 DISTRITO FEDERAL 119.0 1.0 0.0\n",
+ "79356 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "93552 DISTRITO FEDERAL 120.0 -999.0 0.0\n",
+ "93554 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "93556 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "93560 DISTRITO FEDERAL 120.0 -999.0 0.0\n",
+ "93561 DISTRITO FEDERAL 120.0 1.0 0.0"
+ ],
+ "text/html": [
+ "\n",
+ " \n",
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " estado \n",
+ " numero_dias_sem_chuva \n",
+ " risco_fogo \n",
+ " precipitacao \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 2529 \n",
+ " DISTRITO FEDERAL \n",
+ " 113.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 14311 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 29115 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 29444 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 56416 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 56417 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 56422 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 56423 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 56424 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 56425 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 56426 \n",
+ " DISTRITO FEDERAL \n",
+ " 119.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 56427 \n",
+ " DISTRITO FEDERAL \n",
+ " 105.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 56428 \n",
+ " DISTRITO FEDERAL \n",
+ " 104.0 \n",
+ " -999.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 56429 \n",
+ " DISTRITO FEDERAL \n",
+ " 76.0 \n",
+ " -999.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 63039 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 63040 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 63041 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 63044 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 63045 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 63046 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 63047 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 63048 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 63049 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 79054 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 79055 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 79061 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 79062 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 79063 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 79064 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 79355 \n",
+ " DISTRITO FEDERAL \n",
+ " 119.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 79356 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 93552 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " -999.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 93554 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 93556 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 93560 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " -999.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 93561 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
\n",
+ "
\n"
+ ],
+ "application/vnd.google.colaboratory.intrinsic+json": {
+ "type": "dataframe",
+ "variable_name": "dados_distf",
+ "summary": "{\n \"name\": \"dados_distf\",\n \"rows\": 36,\n \"fields\": [\n {\n \"column\": \"estado\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 1,\n \"samples\": [\n \"DISTRITO FEDERAL\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"numero_dias_sem_chuva\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 8.056940220349514,\n \"min\": 76.0,\n \"max\": 120.0,\n \"num_unique_values\": 6,\n \"samples\": [\n 113.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"risco_fogo\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 318.72762915583826,\n \"min\": -999.0,\n \"max\": 1.0,\n \"num_unique_values\": 2,\n \"samples\": [\n -999.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"precipitacao\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0.0,\n \"min\": 0.0,\n \"max\": 0.0,\n \"num_unique_values\": 1,\n \"samples\": [\n 0.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}"
+ }
+ },
+ "metadata": {},
+ "execution_count": 12
+ }
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "# Removendo os Números Negativos e Validando-os\n",
+ "\n",
+ "* Este trecho identifica linhas no DataFrame dados_distf com valores negativos nas colunas risco_fogo, numero_dias_sem_chuva e precipitacao. As expressões dados_distf[(dfquei['risco_fogo'] < 0)], dados_distf[(dfquei['numero_dias_sem_chuva'] < 0)] e dados_distf[(dfquei['precipitacao'] < 0)] retornam essas linhas, permitindo verificar a presença de dados inválidos antes da remoção. No entanto, este trecho não realiza a remoção; apenas exibe os registros com valores negativos."
+ ],
+ "metadata": {
+ "id": "jyM_iu2UTW1w"
+ }
+ },
+ {
+ "cell_type": "code",
+ "source": [
+ "# Removendo os números negativos e validando-os\n",
+ "\n",
+ "dados_distf[(dfquei['risco_fogo'] < 0)]\n",
+ "dados_distf[(dfquei['numero_dias_sem_chuva'] < 0)]\n",
+ "dados_distf[(dfquei['precipitacao'] < 0)]"
+ ],
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 157
+ },
+ "id": "vFRjYLqVDUZh",
+ "outputId": "cc696251-8314-4721-db9a-66cc1953581f",
+ "collapsed": true
+ },
+ "execution_count": 13,
+ "outputs": [
+ {
+ "output_type": "stream",
+ "name": "stderr",
+ "text": [
+ ":3: UserWarning: Boolean Series key will be reindexed to match DataFrame index.\n",
+ " dados_distf[(dfquei['risco_fogo'] < 0)]\n",
+ ":4: UserWarning: Boolean Series key will be reindexed to match DataFrame index.\n",
+ " dados_distf[(dfquei['numero_dias_sem_chuva'] < 0)]\n",
+ ":5: UserWarning: Boolean Series key will be reindexed to match DataFrame index.\n",
+ " dados_distf[(dfquei['precipitacao'] < 0)]\n"
+ ]
+ },
+ {
+ "output_type": "execute_result",
+ "data": {
+ "text/plain": [
+ "Empty DataFrame\n",
+ "Columns: [estado, numero_dias_sem_chuva, risco_fogo, precipitacao]\n",
+ "Index: []"
+ ],
+ "text/html": [
+ "\n",
+ " \n",
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " estado \n",
+ " numero_dias_sem_chuva \n",
+ " risco_fogo \n",
+ " precipitacao \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
\n",
+ "
\n"
+ ],
+ "application/vnd.google.colaboratory.intrinsic+json": {
+ "type": "dataframe",
+ "repr_error": "Out of range float values are not JSON compliant: nan"
+ }
+ },
+ "metadata": {},
+ "execution_count": 13
+ }
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "# Validando a Remoção dos Números Negativos sem Prejudicar a Tabela\n",
+ "\n",
+ "* Neste trecho, os números negativos são removidos do DataFrame dados_distf sem afetar a estrutura da tabela. O método drop() é utilizado para excluir as linhas com valores negativos nas colunas risco_fogo, numero_dias_sem_chuva e precipitacao. Isso garante que o DataFrame dado_distf contenha apenas dados válidos e completos para análises futuras.\n"
+ ],
+ "metadata": {
+ "id": "G9kzyOPRTkUp"
+ }
+ },
+ {
+ "cell_type": "code",
+ "source": [
+ "# Validando a remoção dos números negativos sem prejudicar a tabela\n",
+ "\n",
+ "dado_distf = dados_distf.drop(dados_distf[dfquei['risco_fogo'] < 0].index)\n",
+ "dado_distf = dado_distf.drop(dados_distf[dfquei['numero_dias_sem_chuva'] < 0].index)\n",
+ "dado_distf = dado_distf.drop(dados_distf[dfquei['precipitacao'] < 0].index)"
+ ],
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "-JI2MpZqDyi1",
+ "outputId": "b3ef6624-5953-4a97-ecad-cd05dd59b050",
+ "collapsed": true
+ },
+ "execution_count": 14,
+ "outputs": [
+ {
+ "output_type": "stream",
+ "name": "stderr",
+ "text": [
+ ":3: UserWarning: Boolean Series key will be reindexed to match DataFrame index.\n",
+ " dado_distf = dados_distf.drop(dados_distf[dfquei['risco_fogo'] < 0].index)\n",
+ ":4: UserWarning: Boolean Series key will be reindexed to match DataFrame index.\n",
+ " dado_distf = dado_distf.drop(dados_distf[dfquei['numero_dias_sem_chuva'] < 0].index)\n",
+ ":5: UserWarning: Boolean Series key will be reindexed to match DataFrame index.\n",
+ " dado_distf = dado_distf.drop(dados_distf[dfquei['precipitacao'] < 0].index)\n"
+ ]
+ }
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "# Visualizando o Resultado da Remoção dos Números Negativos\n",
+ "\n",
+ "* O comando dado_distf exibe o DataFrame após a remoção das linhas com números negativos nas colunas risco_fogo, numero_dias_sem_chuva e precipitacao. Esta visualização permite verificar se os dados inválidos foram corretamente excluídos, garantindo que a tabela contenha apenas informações válidas e prontas para análise.\n"
+ ],
+ "metadata": {
+ "id": "2v3CnQY5Tvib"
+ }
+ },
+ {
+ "cell_type": "code",
+ "source": [
+ "# Visualizando o resultando da remoção dos números negativos\n",
+ "\n",
+ "dado_distf"
+ ],
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 1000
+ },
+ "id": "glbw_VMgVgzW",
+ "outputId": "1e253a51-84c2-4658-c068-3a7845a920d9"
+ },
+ "execution_count": 15,
+ "outputs": [
+ {
+ "output_type": "execute_result",
+ "data": {
+ "text/plain": [
+ " estado numero_dias_sem_chuva risco_fogo precipitacao\n",
+ "2529 DISTRITO FEDERAL 113.0 1.0 0.0\n",
+ "14311 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "29115 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "29444 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "56416 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "56417 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "56422 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "56423 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "56424 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "56425 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "56426 DISTRITO FEDERAL 119.0 1.0 0.0\n",
+ "56427 DISTRITO FEDERAL 105.0 1.0 0.0\n",
+ "63039 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "63040 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "63041 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "63044 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "63045 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "63046 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "63047 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "63048 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "63049 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "79054 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "79055 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "79061 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "79062 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "79063 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "79064 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "79355 DISTRITO FEDERAL 119.0 1.0 0.0\n",
+ "79356 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "93554 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "93556 DISTRITO FEDERAL 120.0 1.0 0.0\n",
+ "93561 DISTRITO FEDERAL 120.0 1.0 0.0"
+ ],
+ "text/html": [
+ "\n",
+ " \n",
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " estado \n",
+ " numero_dias_sem_chuva \n",
+ " risco_fogo \n",
+ " precipitacao \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " 2529 \n",
+ " DISTRITO FEDERAL \n",
+ " 113.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 14311 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 29115 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 29444 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 56416 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 56417 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 56422 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 56423 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 56424 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 56425 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 56426 \n",
+ " DISTRITO FEDERAL \n",
+ " 119.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 56427 \n",
+ " DISTRITO FEDERAL \n",
+ " 105.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 63039 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 63040 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 63041 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 63044 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 63045 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 63046 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 63047 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 63048 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 63049 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 79054 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 79055 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 79061 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 79062 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 79063 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 79064 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 79355 \n",
+ " DISTRITO FEDERAL \n",
+ " 119.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 79356 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 93554 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 93556 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 93561 \n",
+ " DISTRITO FEDERAL \n",
+ " 120.0 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
\n",
+ "
\n"
+ ],
+ "application/vnd.google.colaboratory.intrinsic+json": {
+ "type": "dataframe",
+ "variable_name": "dado_distf",
+ "summary": "{\n \"name\": \"dado_distf\",\n \"rows\": 32,\n \"fields\": [\n {\n \"column\": \"estado\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 1,\n \"samples\": [\n \"DISTRITO FEDERAL\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"numero_dias_sem_chuva\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 2.884888324556306,\n \"min\": 105.0,\n \"max\": 120.0,\n \"num_unique_values\": 4,\n \"samples\": [\n 120.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"risco_fogo\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0.0,\n \"min\": 1.0,\n \"max\": 1.0,\n \"num_unique_values\": 1,\n \"samples\": [\n 1.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"precipitacao\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0.0,\n \"min\": 0.0,\n \"max\": 0.0,\n \"num_unique_values\": 1,\n \"samples\": [\n 0.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}"
+ }
+ },
+ "metadata": {},
+ "execution_count": 15
+ }
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "# Visualizando Dados Tratados do DF\n",
+ "\n",
+ "* O método describe() é aplicado ao DataFrame dado_distf para gerar estatísticas descritivas das colunas numéricas após o tratamento. Esta visualização fornece informações sobre contagem, média, desvio padrão, valores mínimo e máximo, e quartis, permitindo uma análise das características estatísticas dos dados válidos relacionados ao Distrito Federal."
+ ],
+ "metadata": {
+ "id": "mXCYfydzT4GP"
+ }
+ },
+ {
+ "cell_type": "code",
+ "source": [
+ "# Visualizando dados tratados do DF\n",
+ "\n",
+ "dado_distf.describe()"
+ ],
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 300
+ },
+ "id": "WnB9sMF8QXs2",
+ "outputId": "3ec2e1d7-bf8c-4e8f-9117-cc936c54e549"
+ },
+ "execution_count": 16,
+ "outputs": [
+ {
+ "output_type": "execute_result",
+ "data": {
+ "text/plain": [
+ " numero_dias_sem_chuva risco_fogo precipitacao\n",
+ "count 32.000000 32.0 32.0\n",
+ "mean 119.250000 1.0 0.0\n",
+ "std 2.884888 0.0 0.0\n",
+ "min 105.000000 1.0 0.0\n",
+ "25% 120.000000 1.0 0.0\n",
+ "50% 120.000000 1.0 0.0\n",
+ "75% 120.000000 1.0 0.0\n",
+ "max 120.000000 1.0 0.0"
+ ],
+ "text/html": [
+ "\n",
+ " \n",
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " numero_dias_sem_chuva \n",
+ " risco_fogo \n",
+ " precipitacao \n",
+ " \n",
+ " \n",
+ " \n",
+ " \n",
+ " count \n",
+ " 32.000000 \n",
+ " 32.0 \n",
+ " 32.0 \n",
+ " \n",
+ " \n",
+ " mean \n",
+ " 119.250000 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " std \n",
+ " 2.884888 \n",
+ " 0.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " min \n",
+ " 105.000000 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 25% \n",
+ " 120.000000 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 50% \n",
+ " 120.000000 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " 75% \n",
+ " 120.000000 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ " max \n",
+ " 120.000000 \n",
+ " 1.0 \n",
+ " 0.0 \n",
+ " \n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
\n",
+ "
\n"
+ ],
+ "application/vnd.google.colaboratory.intrinsic+json": {
+ "type": "dataframe",
+ "summary": "{\n \"name\": \"dado_distf\",\n \"rows\": 8,\n \"fields\": [\n {\n \"column\": \"numero_dias_sem_chuva\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 47.18934078842968,\n \"min\": 2.884888324556306,\n \"max\": 120.0,\n \"num_unique_values\": 5,\n \"samples\": [\n 119.25,\n 120.0,\n 2.884888324556306\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"risco_fogo\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 11.016221805008415,\n \"min\": 0.0,\n \"max\": 32.0,\n \"num_unique_values\": 3,\n \"samples\": [\n 32.0,\n 1.0,\n 0.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"precipitacao\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 11.313708498984761,\n \"min\": 0.0,\n \"max\": 32.0,\n \"num_unique_values\": 2,\n \"samples\": [\n 0.0,\n 32.0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}"
+ }
+ },
+ "metadata": {},
+ "execution_count": 16
+ }
+ ]
+ },
+ {
+ "cell_type": "code",
+ "source": [
+ "dados_sp.to_csv('dados_sp_tratados.csv', index=False)"
+ ],
+ "metadata": {
+ "id": "XlxgwiH4LqKz"
+ },
+ "execution_count": 17,
+ "outputs": []
+ },
+ {
+ "cell_type": "code",
+ "source": [
+ "dado_distf.to_csv('dados_df_tratados.csv', index=False)"
+ ],
+ "metadata": {
+ "id": "0x-Y8ZfkNX44"
+ },
+ "execution_count": 18,
+ "outputs": []
+ },
+ {
+ "cell_type": "code",
+ "source": [
+ "from google.colab import files\n",
+ "\n",
+ "# Fazendo o download do CSV de SP\n",
+ "files.download('dados_sp_tratados.csv')\n",
+ "\n",
+ "# Fazendo o download do CSV de DF\n",
+ "files.download('dados_df_tratados.csv')\n"
+ ],
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 17
+ },
+ "id": "8XJeDkaSNfuH",
+ "outputId": "2e64ed6b-bf0e-4b4e-c8da-53993b509a3f"
+ },
+ "execution_count": 19,
+ "outputs": [
+ {
+ "output_type": "display_data",
+ "data": {
+ "text/plain": [
+ ""
+ ],
+ "application/javascript": [
+ "\n",
+ " async function download(id, filename, size) {\n",
+ " if (!google.colab.kernel.accessAllowed) {\n",
+ " return;\n",
+ " }\n",
+ " const div = document.createElement('div');\n",
+ " const label = document.createElement('label');\n",
+ " label.textContent = `Downloading \"${filename}\": `;\n",
+ " div.appendChild(label);\n",
+ " const progress = document.createElement('progress');\n",
+ " progress.max = size;\n",
+ " div.appendChild(progress);\n",
+ " document.body.appendChild(div);\n",
+ "\n",
+ " const buffers = [];\n",
+ " let downloaded = 0;\n",
+ "\n",
+ " const channel = await google.colab.kernel.comms.open(id);\n",
+ " // Send a message to notify the kernel that we're ready.\n",
+ " channel.send({})\n",
+ "\n",
+ " for await (const message of channel.messages) {\n",
+ " // Send a message to notify the kernel that we're ready.\n",
+ " channel.send({})\n",
+ " if (message.buffers) {\n",
+ " for (const buffer of message.buffers) {\n",
+ " buffers.push(buffer);\n",
+ " downloaded += buffer.byteLength;\n",
+ " progress.value = downloaded;\n",
+ " }\n",
+ " }\n",
+ " }\n",
+ " const blob = new Blob(buffers, {type: 'application/binary'});\n",
+ " const a = document.createElement('a');\n",
+ " a.href = window.URL.createObjectURL(blob);\n",
+ " a.download = filename;\n",
+ " div.appendChild(a);\n",
+ " a.click();\n",
+ " div.remove();\n",
+ " }\n",
+ " "
+ ]
+ },
+ "metadata": {}
+ },
+ {
+ "output_type": "display_data",
+ "data": {
+ "text/plain": [
+ ""
+ ],
+ "application/javascript": [
+ "download(\"download_02891f1c-fa8e-4683-bc83-eda7e458e2aa\", \"dados_sp_tratados.csv\", 37915)"
+ ]
+ },
+ "metadata": {}
+ },
+ {
+ "output_type": "display_data",
+ "data": {
+ "text/plain": [
+ ""
+ ],
+ "application/javascript": [
+ "\n",
+ " async function download(id, filename, size) {\n",
+ " if (!google.colab.kernel.accessAllowed) {\n",
+ " return;\n",
+ " }\n",
+ " const div = document.createElement('div');\n",
+ " const label = document.createElement('label');\n",
+ " label.textContent = `Downloading \"${filename}\": `;\n",
+ " div.appendChild(label);\n",
+ " const progress = document.createElement('progress');\n",
+ " progress.max = size;\n",
+ " div.appendChild(progress);\n",
+ " document.body.appendChild(div);\n",
+ "\n",
+ " const buffers = [];\n",
+ " let downloaded = 0;\n",
+ "\n",
+ " const channel = await google.colab.kernel.comms.open(id);\n",
+ " // Send a message to notify the kernel that we're ready.\n",
+ " channel.send({})\n",
+ "\n",
+ " for await (const message of channel.messages) {\n",
+ " // Send a message to notify the kernel that we're ready.\n",
+ " channel.send({})\n",
+ " if (message.buffers) {\n",
+ " for (const buffer of message.buffers) {\n",
+ " buffers.push(buffer);\n",
+ " downloaded += buffer.byteLength;\n",
+ " progress.value = downloaded;\n",
+ " }\n",
+ " }\n",
+ " }\n",
+ " const blob = new Blob(buffers, {type: 'application/binary'});\n",
+ " const a = document.createElement('a');\n",
+ " a.href = window.URL.createObjectURL(blob);\n",
+ " a.download = filename;\n",
+ " div.appendChild(a);\n",
+ " a.click();\n",
+ " div.remove();\n",
+ " }\n",
+ " "
+ ]
+ },
+ "metadata": {}
+ },
+ {
+ "output_type": "display_data",
+ "data": {
+ "text/plain": [
+ ""
+ ],
+ "application/javascript": [
+ "download(\"download_66bc0ad1-5b17-46dd-bb92-f7f773ff87ef\", \"dados_df_tratados.csv\", 1045)"
+ ]
+ },
+ "metadata": {}
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/material/Analise_Queimadas.md b/material/Analise_Queimadas.md
new file mode 100644
index 0000000..c50d079
--- /dev/null
+++ b/material/Analise_Queimadas.md
@@ -0,0 +1,76 @@
+
+# ANÁLISE DE DADOS DO MÊS DE SETEMBRO SOBRE AS QUEIMADAS NO DISTRITO FEDERAL E EM SÃO PAULO
+
+Reprograma Turma On34
+
+Integrantes: Maria Eduarda Quaresma de Andrade e Fernanda da Silva Bazanini
+
+# Materiais
+
+Atualizamos recentemente nosso [dashboard do Tableau], que contém as análises mais recentes do projeto. Acesse o link para visualizar os dados detalhados: https://public.tableau.com/views/AnlisedeQueimadas-Projeto/ComparaodaSecuraeRiscodeFogoentreosEstados?:language=pt-BR&:sid=&:redirect=auth&:display_count=n&:origin=viz_share_link
+
+Disponibilizamos também os [slides de apresentação] atualizados, onde você pode conferir os principais pontos e conclusões do projeto. Veja o link para acessar: https://www.canva.com/design/DAGTOYf96Gg/Rc6ubGolKdAGacsVHv5ghA/edit?utm_content=DAGTOYf96Gg&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton
+
+# Contexto
+
+Este projeto foi desenvolvido para analisar as ocorrências de queimadas nas regiões do Distrito Federal e São Paulo. A proposta é identificar padrões e tendências relacionadas ao risco de fogo, número de dias sem chuva e precipitação a partir de dados coletados, visando contribuir para a formulação de políticas públicas que ajudem a mitigar as queimadas.
+
+# Sobre Queimadas no Brasil
+
+As queimadas são um fenômeno recorrente no Brasil, especialmente em períodos de seca. Elas têm um impacto significativo no meio ambiente, na saúde pública e na economia. Analisar as condições que favorecem essas queimadas é crucial para o desenvolvimento de estratégias de prevenção e resposta a desastres.
+
+# Objetivo
+
+Realizar uma análise estatística dos dados de queimadas nas regiões de São Paulo e Distrito Federal, visando responder às seguintes perguntas estratégicas:
+
+1. Quais são os padrões históricos de queimadas nas regiões analisadas?
+
+* Justificativa: Compreender os padrões pode auxiliar na previsão de queimadas futuras e na implementação de ações preventivas.
+
+2. Qual é a relação entre dias sem chuva e o aumento do risco de fogo?
+
+* Justificativa: Identificar como a falta de chuva influencia o risco de queimadas pode ajudar na formulação de alertas e campanhas de conscientização.
+
+3. Como a precipitação afeta as ocorrências de queimadas?
+
+* Justificativa: Entender a relação entre precipitação e queimadas é essencial para a gestão de recursos naturais e a proteção de áreas suscetíveis a incêndios.
+
+# Metodologia #
+
+* Banco de Dados
+
+Os dados utilizados foram extraídos de um conjunto de dados contendo informações sobre queimadas no Brasil. As seguintes etapas foram realizadas:
+
+1. Importação de Bibliotecas:
+
+* Utilização de bibliotecas como pandas e numpy para manipulação de dados.
+
+2. Leitura e Visualização:
+
+* Carregamento dos dados em formato CSV e visualização inicial.
+
+3. Tratamento de Dados:
+
+* Verificação de valores ausentes e remoção de linhas com dados inválidos, como números negativos.
+* Filtragem dos dados por estado (São Paulo e Distrito Federal) e limpeza dos conjuntos de dados.
+
+4. Análise Estatística:
+
+* Geração de estatísticas descritivas para compreender a distribuição dos dados.
+* Criação de visualizações gráficas para ilustrar os padrões identificados.
+
+# Entregáveis Esperados
+
+* Relatório contendo insights e visualizações que ajudem a responder às perguntas acima.
+
+* Gráficos que demonstrem os padrões de queimadas em relação às variáveis analisadas.
+
+* Conclusões baseadas nas análises, incluindo recomendações para a mitigação de queimadas.
+
+# Ferramentas Utilizadas
+
+ Python (Pandas, Matplotlib, Seaborn)
+ Jupyter Notebook
+ Google Sheets para compartilhamento e documentação do progresso.
+
+
diff --git a/material/datasets/dados_df_tratados.csv b/material/datasets/dados_df_tratados.csv
new file mode 100644
index 0000000..f06ff8f
--- /dev/null
+++ b/material/datasets/dados_df_tratados.csv
@@ -0,0 +1,33 @@
+estado,numero_dias_sem_chuva,risco_fogo,precipitacao
+DISTRITO FEDERAL,113.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,119.0,1.0,0.0
+DISTRITO FEDERAL,105.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,119.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
+DISTRITO FEDERAL,120.0,1.0,0.0
diff --git a/material/datasets/dados_sp_tratados.csv b/material/datasets/dados_sp_tratados.csv
new file mode 100644
index 0000000..743d8f9
--- /dev/null
+++ b/material/datasets/dados_sp_tratados.csv
@@ -0,0 +1,1601 @@
+estado,numero_dias_sem_chuva,risco_fogo,precipitacao
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.84,0.0
+SÃO PAULO,7.0,0.84,0.0
+SÃO PAULO,7.0,0.96,0.0
+SÃO PAULO,7.0,0.93,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.84,0.0
+SÃO PAULO,7.0,0.99,0.0
+SÃO PAULO,7.0,0.93,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.96,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,111.0,1.0,0.0
+SÃO PAULO,115.0,1.0,0.0
+SÃO PAULO,117.0,1.0,0.0
+SÃO PAULO,105.0,1.0,0.0
+SÃO PAULO,109.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,76.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.49,0.0
+SÃO PAULO,7.0,0.63,0.0
+SÃO PAULO,7.0,0.5,0.0
+SÃO PAULO,7.0,0.51,0.0
+SÃO PAULO,7.0,0.95,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.89,0.0
+SÃO PAULO,7.0,0.88,0.0
+SÃO PAULO,7.0,0.86,0.0
+SÃO PAULO,7.0,0.7,0.0
+SÃO PAULO,7.0,0.65,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.95,0.0
+SÃO PAULO,7.0,0.99,0.0
+SÃO PAULO,7.0,0.99,0.0
+SÃO PAULO,7.0,0.99,0.0
+SÃO PAULO,7.0,0.99,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,0.96,0.0
+SÃO PAULO,7.0,0.61,0.0
+SÃO PAULO,7.0,0.61,0.0
+SÃO PAULO,7.0,0.62,0.0
+SÃO PAULO,7.0,0.62,0.0
+SÃO PAULO,6.0,0.7,0.0
+SÃO PAULO,6.0,1.0,0.0
+SÃO PAULO,6.0,1.0,0.0
+SÃO PAULO,7.0,0.96,0.0
+SÃO PAULO,7.0,0.95,0.0
+SÃO PAULO,7.0,0.94,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.94,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,76.0,1.0,0.0
+SÃO PAULO,78.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,73.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,75.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.99,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.92,0.0
+SÃO PAULO,7.0,0.95,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,0.93,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.87,0.0
+SÃO PAULO,7.0,0.87,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,0.87,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,20.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.91,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.91,0.0
+SÃO PAULO,7.0,0.91,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.85,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.96,0.0
+SÃO PAULO,7.0,0.96,0.0
+SÃO PAULO,7.0,0.95,0.0
+SÃO PAULO,7.0,0.94,0.0
+SÃO PAULO,7.0,0.94,0.0
+SÃO PAULO,7.0,0.95,0.0
+SÃO PAULO,7.0,0.96,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,94.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,55.0,1.0,0.0
+SÃO PAULO,52.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.61,0.0
+SÃO PAULO,6.0,0.8,0.0
+SÃO PAULO,7.0,0.61,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.68,0.0
+SÃO PAULO,7.0,0.5,0.0
+SÃO PAULO,7.0,0.95,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.92,0.0
+SÃO PAULO,7.0,0.94,0.0
+SÃO PAULO,6.0,0.79,0.0
+SÃO PAULO,7.0,0.85,0.0
+SÃO PAULO,7.0,0.68,0.0
+SÃO PAULO,7.0,0.75,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.74,0.0
+SÃO PAULO,7.0,0.78,0.0
+SÃO PAULO,7.0,0.76,0.0
+SÃO PAULO,7.0,0.55,0.0
+SÃO PAULO,6.0,1.0,0.0
+SÃO PAULO,7.0,0.77,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,101.0,1.0,0.0
+SÃO PAULO,99.0,1.0,0.0
+SÃO PAULO,100.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,7.0,0.55,0.0
+SÃO PAULO,7.0,0.48,0.0
+SÃO PAULO,7.0,0.74,0.0
+SÃO PAULO,7.0,0.58,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.85,0.0
+SÃO PAULO,7.0,0.84,0.0
+SÃO PAULO,7.0,0.84,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,74.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,77.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,71.0,1.0,0.0
+SÃO PAULO,74.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,7.0,0.96,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.91,0.0
+SÃO PAULO,7.0,0.94,0.0
+SÃO PAULO,7.0,0.96,0.0
+SÃO PAULO,7.0,0.96,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.95,0.0
+SÃO PAULO,7.0,0.95,0.0
+SÃO PAULO,7.0,0.94,0.0
+SÃO PAULO,7.0,0.95,0.0
+SÃO PAULO,7.0,0.96,0.0
+SÃO PAULO,7.0,0.96,0.0
+SÃO PAULO,7.0,0.96,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.87,0.0
+SÃO PAULO,7.0,0.59,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.77,0.0
+SÃO PAULO,7.0,0.68,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.87,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,99.0,1.0,0.0
+SÃO PAULO,102.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,52.0,1.0,0.0
+SÃO PAULO,57.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,78.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,0.96,0.0
+SÃO PAULO,7.0,0.94,0.0
+SÃO PAULO,7.0,0.95,0.0
+SÃO PAULO,7.0,0.95,0.0
+SÃO PAULO,7.0,0.96,0.0
+SÃO PAULO,7.0,0.94,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.95,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.81,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.87,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,100.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,79.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,7.0,0.93,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,119.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,119.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,77.0,1.0,0.0
+SÃO PAULO,7.0,0.95,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,6.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.85,0.0
+SÃO PAULO,7.0,0.92,0.0
+SÃO PAULO,7.0,0.86,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,55.0,1.0,0.0
+SÃO PAULO,111.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.93,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.75,0.0
+SÃO PAULO,7.0,0.93,0.0
+SÃO PAULO,7.0,0.99,0.0
+SÃO PAULO,7.0,0.54,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.49,0.0
+SÃO PAULO,7.0,0.5,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.83,0.0
+SÃO PAULO,7.0,0.48,0.0
+SÃO PAULO,7.0,0.48,0.0
+SÃO PAULO,7.0,0.48,0.0
+SÃO PAULO,7.0,0.72,0.0
+SÃO PAULO,7.0,0.96,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.5,0.0
+SÃO PAULO,7.0,0.5,0.0
+SÃO PAULO,7.0,0.61,0.0
+SÃO PAULO,7.0,0.49,0.0
+SÃO PAULO,7.0,0.51,0.0
+SÃO PAULO,7.0,0.51,0.0
+SÃO PAULO,7.0,0.51,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.79,0.0
+SÃO PAULO,7.0,0.99,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,0.99,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.93,0.0
+SÃO PAULO,7.0,0.96,0.0
+SÃO PAULO,7.0,0.94,0.0
+SÃO PAULO,7.0,0.95,0.0
+SÃO PAULO,7.0,0.94,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.92,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,6.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.63,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.54,0.0
+SÃO PAULO,7.0,0.49,0.0
+SÃO PAULO,7.0,0.47,0.0
+SÃO PAULO,7.0,0.5,0.0
+SÃO PAULO,7.0,0.52,0.0
+SÃO PAULO,7.0,0.52,0.0
+SÃO PAULO,7.0,0.52,0.0
+SÃO PAULO,7.0,0.51,0.0
+SÃO PAULO,7.0,0.51,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,6.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.5,0.0
+SÃO PAULO,7.0,0.53,0.0
+SÃO PAULO,7.0,0.49,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.5,0.0
+SÃO PAULO,7.0,0.85,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.92,0.0
+SÃO PAULO,7.0,0.69,0.0
+SÃO PAULO,7.0,0.82,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.48,0.0
+SÃO PAULO,7.0,0.48,0.0
+SÃO PAULO,7.0,0.48,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.49,0.0
+SÃO PAULO,7.0,0.5,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,0.96,0.0
+SÃO PAULO,7.0,0.78,0.0
+SÃO PAULO,7.0,0.81,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,0.93,0.0
+SÃO PAULO,7.0,0.94,0.0
+SÃO PAULO,7.0,0.94,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.93,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.94,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.95,0.0
+SÃO PAULO,6.0,0.89,0.0
+SÃO PAULO,7.0,0.92,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.99,0.0
+SÃO PAULO,7.0,0.86,0.0
+SÃO PAULO,6.0,1.0,0.0
+SÃO PAULO,6.0,0.67,0.0
+SÃO PAULO,7.0,0.57,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.61,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.79,0.0
+SÃO PAULO,7.0,0.55,0.0
+SÃO PAULO,7.0,0.73,0.0
+SÃO PAULO,7.0,0.81,0.0
+SÃO PAULO,7.0,0.8,0.0
+SÃO PAULO,7.0,0.74,0.0
+SÃO PAULO,7.0,0.75,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,6.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,6.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.95,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.87,0.0
+SÃO PAULO,7.0,0.87,0.0
+SÃO PAULO,7.0,0.87,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.86,0.0
+SÃO PAULO,7.0,0.92,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,54.0,1.0,0.0
+SÃO PAULO,113.0,1.0,0.0
+SÃO PAULO,112.0,1.0,0.0
+SÃO PAULO,113.0,1.0,0.0
+SÃO PAULO,112.0,1.0,0.0
+SÃO PAULO,111.0,1.0,0.0
+SÃO PAULO,112.0,1.0,0.0
+SÃO PAULO,111.0,1.0,0.0
+SÃO PAULO,110.0,1.0,0.0
+SÃO PAULO,111.0,1.0,0.0
+SÃO PAULO,110.0,1.0,0.0
+SÃO PAULO,110.0,1.0,0.0
+SÃO PAULO,109.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.1
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,6.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.95,0.0
+SÃO PAULO,7.0,0.96,0.0
+SÃO PAULO,7.0,0.99,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,6.0,0.97,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.95,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.92,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,84.0,1.0,0.0
+SÃO PAULO,85.0,1.0,0.0
+SÃO PAULO,115.0,1.0,0.0
+SÃO PAULO,114.0,1.0,0.0
+SÃO PAULO,113.0,1.0,0.0
+SÃO PAULO,112.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,6.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.91,0.0
+SÃO PAULO,7.0,0.82,0.0
+SÃO PAULO,6.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.87,0.0
+SÃO PAULO,7.0,0.76,0.0
+SÃO PAULO,7.0,0.76,0.0
+SÃO PAULO,7.0,0.8,0.0
+SÃO PAULO,7.0,0.83,0.0
+SÃO PAULO,7.0,0.72,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.78,0.0
+SÃO PAULO,7.0,0.88,0.0
+SÃO PAULO,7.0,0.78,0.0
+SÃO PAULO,7.0,0.72,0.0
+SÃO PAULO,7.0,0.75,0.0
+SÃO PAULO,7.0,0.73,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.93,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,6.0,0.67,0.0
+SÃO PAULO,7.0,0.91,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,0.96,0.0
+SÃO PAULO,7.0,0.51,0.0
+SÃO PAULO,7.0,0.47,0.0
+SÃO PAULO,7.0,0.51,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.49,0.0
+SÃO PAULO,7.0,0.56,0.0
+SÃO PAULO,7.0,0.68,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.48,0.0
+SÃO PAULO,7.0,0.48,0.0
+SÃO PAULO,7.0,0.48,0.0
+SÃO PAULO,7.0,0.48,0.0
+SÃO PAULO,7.0,0.73,0.0
+SÃO PAULO,7.0,0.84,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.56,0.0
+SÃO PAULO,7.0,0.52,0.0
+SÃO PAULO,7.0,0.51,0.0
+SÃO PAULO,7.0,0.51,0.0
+SÃO PAULO,7.0,0.5,0.0
+SÃO PAULO,7.0,0.5,0.0
+SÃO PAULO,7.0,0.47,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,6.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.95,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,0.99,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,0.99,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.96,0.0
+SÃO PAULO,7.0,0.99,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.91,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.88,0.0
+SÃO PAULO,7.0,0.96,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.89,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.86,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,0.95,0.0
+SÃO PAULO,7.0,0.99,0.0
+SÃO PAULO,7.0,0.93,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,0.92,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,119.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,119.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,81.0,1.0,0.0
+SÃO PAULO,82.0,1.0,0.0
+SÃO PAULO,84.0,1.0,0.0
+SÃO PAULO,84.0,1.0,0.0
+SÃO PAULO,84.0,1.0,0.0
+SÃO PAULO,85.0,1.0,0.0
+SÃO PAULO,87.0,1.0,0.0
+SÃO PAULO,87.0,1.0,0.0
+SÃO PAULO,116.0,1.0,0.0
+SÃO PAULO,115.0,1.0,0.0
+SÃO PAULO,113.0,1.0,0.0
+SÃO PAULO,110.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.1
+SÃO PAULO,53.0,1.0,0.0
+SÃO PAULO,55.0,1.0,0.0
+SÃO PAULO,113.0,1.0,0.0
+SÃO PAULO,112.0,1.0,0.0
+SÃO PAULO,113.0,1.0,0.0
+SÃO PAULO,112.0,1.0,0.0
+SÃO PAULO,112.0,1.0,0.0
+SÃO PAULO,110.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.82,0.0
+SÃO PAULO,7.0,0.82,0.0
+SÃO PAULO,7.0,0.56,0.0
+SÃO PAULO,7.0,0.57,0.0
+SÃO PAULO,7.0,0.62,0.0
+SÃO PAULO,6.0,0.66,0.0
+SÃO PAULO,6.0,0.9,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.48,0.0
+SÃO PAULO,7.0,0.48,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.49,0.0
+SÃO PAULO,7.0,0.7,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,6.0,0.88,0.0
+SÃO PAULO,7.0,0.6,0.0
+SÃO PAULO,7.0,0.91,0.0
+SÃO PAULO,7.0,0.68,0.0
+SÃO PAULO,6.0,1.0,0.0
+SÃO PAULO,7.0,0.49,0.0
+SÃO PAULO,7.0,0.47,0.0
+SÃO PAULO,7.0,0.92,0.0
+SÃO PAULO,7.0,0.89,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.99,0.0
+SÃO PAULO,7.0,0.47,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.48,0.0
+SÃO PAULO,85.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,85.0,1.0,0.0
+SÃO PAULO,79.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,114.0,1.0,0.0
+SÃO PAULO,80.0,1.0,0.0
+SÃO PAULO,116.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.99,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,6.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.92,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.95,0.0
+SÃO PAULO,7.0,0.99,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.92,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,0.99,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,118.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,115.0,1.0,0.0
+SÃO PAULO,117.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,116.0,1.0,0.0
+SÃO PAULO,118.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,115.0,1.0,0.0
+SÃO PAULO,52.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,111.0,1.0,0.0
+SÃO PAULO,112.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,6.0,0.95,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,6.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,6.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,0.95,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,0.91,0.0
+SÃO PAULO,7.0,0.94,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,0.99,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,111.0,1.0,0.0
+SÃO PAULO,113.0,1.0,0.0
+SÃO PAULO,114.0,1.0,0.0
+SÃO PAULO,115.0,1.0,0.0
+SÃO PAULO,89.0,1.0,0.0
+SÃO PAULO,89.0,1.0,0.0
+SÃO PAULO,88.0,1.0,0.0
+SÃO PAULO,88.0,1.0,0.0
+SÃO PAULO,87.0,1.0,0.0
+SÃO PAULO,87.0,1.0,0.0
+SÃO PAULO,86.0,1.0,0.0
+SÃO PAULO,84.0,1.0,0.0
+SÃO PAULO,84.0,1.0,0.0
+SÃO PAULO,83.0,1.0,0.0
+SÃO PAULO,83.0,1.0,0.0
+SÃO PAULO,85.0,1.0,0.0
+SÃO PAULO,82.0,1.0,0.0
+SÃO PAULO,82.0,1.0,0.0
+SÃO PAULO,81.0,1.0,0.0
+SÃO PAULO,81.0,1.0,0.0
+SÃO PAULO,80.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,110.0,1.0,0.0
+SÃO PAULO,112.0,1.0,0.0
+SÃO PAULO,112.0,1.0,0.0
+SÃO PAULO,56.0,1.0,0.0
+SÃO PAULO,53.0,1.0,0.0
+SÃO PAULO,49.0,1.0,0.0
+SÃO PAULO,7.0,0.89,0.0
+SÃO PAULO,7.0,0.96,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,0.97,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.1
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,6.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.53,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.67,0.0
+SÃO PAULO,7.0,0.6,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,120.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,6.0,0.67,0.0
+SÃO PAULO,117.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,0.98,0.0
+SÃO PAULO,7.0,1.0,0.0
+SÃO PAULO,6.0,0.67,0.0
+SÃO PAULO,6.0,0.66,0.0
diff --git a/material/nome-projeto.md b/material/nome-projeto.md
deleted file mode 100644
index 55c478b..0000000
--- a/material/nome-projeto.md
+++ /dev/null
@@ -1,12 +0,0 @@
-## Contexto
-Esse projeto consiste na análise de xxxxxx. O objetivo desse projeto é xxxxxxxxx.
-Para desenvolver esse projeto, desenvolvemos uma análise exploratória de dados xxxxxxx e utilizamos o Tableau para gerar a visualização das nossas análises.
-
-### Objetivos gerais e específicos do projeto
-
-### Bases escolhidas
-
-- Base 1 (fonte)
-- Base 2 (fonte)
-
-## Ferramentas utilizadas
\ No newline at end of file