├── .gitignore ├── LICENSE ├── README.md ├── data ├── .gitkeep └── ipea-20250319T124834Z-001.zip ├── dia01 ├── 01_hello_pandas.py ├── 02_series.py ├── 03_series_index.py └── 04_dataframes.py ├── dia02 ├── 01_csv.py ├── 02_clipboard.py ├── 03_html.py ├── 04_dataframes.py └── 05_colunas.py ├── dia03 ├── 01_filtro.py ├── 02_mais_filtros.py └── 03_filtros_view.py ├── dia04 ├── 01_novas_colunas.py └── 02_sort.py ├── dia05 ├── 01_conv_tipo.py ├── 02_na.py └── 03_duplicatas.py ├── dia06 ├── 01_apply.py └── 02_ufs.py ├── dia07 ├── 01_summary.py ├── 02_group.py └── 03_custom_group.py ├── dia08 ├── 01_merge.py └── 02_concat.py ├── dia09 ├── 01_db.py ├── 02_etl.py ├── etl.sql ├── pandas_sql.drawio └── pandas_sql.png └── exercicios ├── 02 └── 01.py ├── 03 └── exercicios.py ├── 04 ├── drop_duplicates.py └── exercicios.py ├── 05 └── exercicios.py ├── 06 ├── 01.py ├── 02.py ├── 03.py ├── 04.py ├── 05.py └── 06.py ├── case_cartao_credito └── cartao.py └── case_homicidios ├── 01_case.py ├── 02_stack_unstack.py └── 03_pivot.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.csv 2 | *.xlsx 3 | *parquet 4 | *.db -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/ipea-20250319T124834Z-001.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/data/ipea-20250319T124834Z-001.zip -------------------------------------------------------------------------------- /dia01/01_hello_pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia01/01_hello_pandas.py -------------------------------------------------------------------------------- /dia01/02_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia01/02_series.py -------------------------------------------------------------------------------- /dia01/03_series_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia01/03_series_index.py -------------------------------------------------------------------------------- /dia01/04_dataframes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia01/04_dataframes.py -------------------------------------------------------------------------------- /dia02/01_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia02/01_csv.py -------------------------------------------------------------------------------- /dia02/02_clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia02/02_clipboard.py -------------------------------------------------------------------------------- /dia02/03_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia02/03_html.py -------------------------------------------------------------------------------- /dia02/04_dataframes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia02/04_dataframes.py -------------------------------------------------------------------------------- /dia02/05_colunas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia02/05_colunas.py -------------------------------------------------------------------------------- /dia03/01_filtro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia03/01_filtro.py -------------------------------------------------------------------------------- /dia03/02_mais_filtros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia03/02_mais_filtros.py -------------------------------------------------------------------------------- /dia03/03_filtros_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia03/03_filtros_view.py -------------------------------------------------------------------------------- /dia04/01_novas_colunas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia04/01_novas_colunas.py -------------------------------------------------------------------------------- /dia04/02_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia04/02_sort.py -------------------------------------------------------------------------------- /dia05/01_conv_tipo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia05/01_conv_tipo.py -------------------------------------------------------------------------------- /dia05/02_na.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia05/02_na.py -------------------------------------------------------------------------------- /dia05/03_duplicatas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia05/03_duplicatas.py -------------------------------------------------------------------------------- /dia06/01_apply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia06/01_apply.py -------------------------------------------------------------------------------- /dia06/02_ufs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia06/02_ufs.py -------------------------------------------------------------------------------- /dia07/01_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia07/01_summary.py -------------------------------------------------------------------------------- /dia07/02_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia07/02_group.py -------------------------------------------------------------------------------- /dia07/03_custom_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia07/03_custom_group.py -------------------------------------------------------------------------------- /dia08/01_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia08/01_merge.py -------------------------------------------------------------------------------- /dia08/02_concat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia08/02_concat.py -------------------------------------------------------------------------------- /dia09/01_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia09/01_db.py -------------------------------------------------------------------------------- /dia09/02_etl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia09/02_etl.py -------------------------------------------------------------------------------- /dia09/etl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia09/etl.sql -------------------------------------------------------------------------------- /dia09/pandas_sql.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia09/pandas_sql.drawio -------------------------------------------------------------------------------- /dia09/pandas_sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/dia09/pandas_sql.png -------------------------------------------------------------------------------- /exercicios/02/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/exercicios/02/01.py -------------------------------------------------------------------------------- /exercicios/03/exercicios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/exercicios/03/exercicios.py -------------------------------------------------------------------------------- /exercicios/04/drop_duplicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/exercicios/04/drop_duplicates.py -------------------------------------------------------------------------------- /exercicios/04/exercicios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/exercicios/04/exercicios.py -------------------------------------------------------------------------------- /exercicios/05/exercicios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/exercicios/05/exercicios.py -------------------------------------------------------------------------------- /exercicios/06/01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/exercicios/06/01.py -------------------------------------------------------------------------------- /exercicios/06/02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/exercicios/06/02.py -------------------------------------------------------------------------------- /exercicios/06/03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/exercicios/06/03.py -------------------------------------------------------------------------------- /exercicios/06/04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/exercicios/06/04.py -------------------------------------------------------------------------------- /exercicios/06/05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/exercicios/06/05.py -------------------------------------------------------------------------------- /exercicios/06/06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/exercicios/06/06.py -------------------------------------------------------------------------------- /exercicios/case_cartao_credito/cartao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/exercicios/case_cartao_credito/cartao.py -------------------------------------------------------------------------------- /exercicios/case_homicidios/01_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/exercicios/case_homicidios/01_case.py -------------------------------------------------------------------------------- /exercicios/case_homicidios/02_stack_unstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/exercicios/case_homicidios/02_stack_unstack.py -------------------------------------------------------------------------------- /exercicios/case_homicidios/03_pivot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/pandas-2025/HEAD/exercicios/case_homicidios/03_pivot.py --------------------------------------------------------------------------------