├── .gitignore ├── README.md ├── case └── .gitkeep ├── data ├── .gitkeep └── query.sql ├── dia01 ├── .gitkeep ├── dataframes.py ├── ex01.py ├── ex02.py └── series.py ├── dia02 ├── .gitkeep ├── import_csv.py ├── import_csv_02.py ├── import_excel.py └── import_parquet.py ├── dia03 ├── .gitkeep ├── convertendo_tipos.py ├── novas_colunas.py ├── ordernação.py ├── remove_dup.py └── remove_dup_ex.py ├── dia04 ├── .gitkeep ├── groupby.py ├── merge.py └── nans.py ├── dia05 ├── .gitkeep ├── concat.py ├── concatenao.py ├── merge_2.py └── pandas_db.py └── dia06 ├── stack_unstack.py └── transacao_cartao.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/desbravando-pandas/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/desbravando-pandas/HEAD/README.md -------------------------------------------------------------------------------- /case/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/query.sql: -------------------------------------------------------------------------------- 1 | SELECT * 2 | FROM customers -------------------------------------------------------------------------------- /dia01/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dia01/dataframes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/desbravando-pandas/HEAD/dia01/dataframes.py -------------------------------------------------------------------------------- /dia01/ex01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/desbravando-pandas/HEAD/dia01/ex01.py -------------------------------------------------------------------------------- /dia01/ex02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/desbravando-pandas/HEAD/dia01/ex02.py -------------------------------------------------------------------------------- /dia01/series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/desbravando-pandas/HEAD/dia01/series.py -------------------------------------------------------------------------------- /dia02/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dia02/import_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/desbravando-pandas/HEAD/dia02/import_csv.py -------------------------------------------------------------------------------- /dia02/import_csv_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/desbravando-pandas/HEAD/dia02/import_csv_02.py -------------------------------------------------------------------------------- /dia02/import_excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/desbravando-pandas/HEAD/dia02/import_excel.py -------------------------------------------------------------------------------- /dia02/import_parquet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/desbravando-pandas/HEAD/dia02/import_parquet.py -------------------------------------------------------------------------------- /dia03/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dia03/convertendo_tipos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/desbravando-pandas/HEAD/dia03/convertendo_tipos.py -------------------------------------------------------------------------------- /dia03/novas_colunas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/desbravando-pandas/HEAD/dia03/novas_colunas.py -------------------------------------------------------------------------------- /dia03/ordernação.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/desbravando-pandas/HEAD/dia03/ordernação.py -------------------------------------------------------------------------------- /dia03/remove_dup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/desbravando-pandas/HEAD/dia03/remove_dup.py -------------------------------------------------------------------------------- /dia03/remove_dup_ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/desbravando-pandas/HEAD/dia03/remove_dup_ex.py -------------------------------------------------------------------------------- /dia04/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dia04/groupby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/desbravando-pandas/HEAD/dia04/groupby.py -------------------------------------------------------------------------------- /dia04/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/desbravando-pandas/HEAD/dia04/merge.py -------------------------------------------------------------------------------- /dia04/nans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/desbravando-pandas/HEAD/dia04/nans.py -------------------------------------------------------------------------------- /dia05/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dia05/concat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/desbravando-pandas/HEAD/dia05/concat.py -------------------------------------------------------------------------------- /dia05/concatenao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/desbravando-pandas/HEAD/dia05/concatenao.py -------------------------------------------------------------------------------- /dia05/merge_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/desbravando-pandas/HEAD/dia05/merge_2.py -------------------------------------------------------------------------------- /dia05/pandas_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/desbravando-pandas/HEAD/dia05/pandas_db.py -------------------------------------------------------------------------------- /dia06/stack_unstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/desbravando-pandas/HEAD/dia06/stack_unstack.py -------------------------------------------------------------------------------- /dia06/transacao_cartao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/desbravando-pandas/HEAD/dia06/transacao_cartao.py --------------------------------------------------------------------------------