├── .gitignore ├── .vscode └── settings.json ├── LICENSE.md ├── README.md ├── book ├── .gitignore ├── _quarto.yml ├── custom.css ├── index.qmd ├── indexing.qmd ├── method_chaining.qmd ├── pandas_chain_tweet.png ├── performance.qmd ├── polar-bear-airpods-no-background.png ├── polar-bear-airpods.png ├── resized-og-polar-bear-airpods-no-background.png ├── scaling.qmd ├── summary.qmd ├── tidy.qmd └── timeseries.qmd ├── data ├── airports.csv ├── flights.csv.zip ├── nba.csv ├── nba │ ├── april.csv │ ├── december.csv │ ├── february.csv │ ├── january.csv │ ├── june.csv │ ├── march.csv │ ├── may.csv │ ├── november.csv │ └── october.csv └── ohlcv.pq ├── dupe_csv.sh ├── env.yml ├── mem_dd.py ├── mem_pd.py └── mem_pl.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/README.md -------------------------------------------------------------------------------- /book/.gitignore: -------------------------------------------------------------------------------- 1 | /.quarto/ 2 | _book/ 3 | -------------------------------------------------------------------------------- /book/_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/book/_quarto.yml -------------------------------------------------------------------------------- /book/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/book/custom.css -------------------------------------------------------------------------------- /book/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/book/index.qmd -------------------------------------------------------------------------------- /book/indexing.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/book/indexing.qmd -------------------------------------------------------------------------------- /book/method_chaining.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/book/method_chaining.qmd -------------------------------------------------------------------------------- /book/pandas_chain_tweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/book/pandas_chain_tweet.png -------------------------------------------------------------------------------- /book/performance.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/book/performance.qmd -------------------------------------------------------------------------------- /book/polar-bear-airpods-no-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/book/polar-bear-airpods-no-background.png -------------------------------------------------------------------------------- /book/polar-bear-airpods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/book/polar-bear-airpods.png -------------------------------------------------------------------------------- /book/resized-og-polar-bear-airpods-no-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/book/resized-og-polar-bear-airpods-no-background.png -------------------------------------------------------------------------------- /book/scaling.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/book/scaling.qmd -------------------------------------------------------------------------------- /book/summary.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/book/summary.qmd -------------------------------------------------------------------------------- /book/tidy.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/book/tidy.qmd -------------------------------------------------------------------------------- /book/timeseries.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/book/timeseries.qmd -------------------------------------------------------------------------------- /data/airports.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/data/airports.csv -------------------------------------------------------------------------------- /data/flights.csv.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/data/flights.csv.zip -------------------------------------------------------------------------------- /data/nba.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/data/nba.csv -------------------------------------------------------------------------------- /data/nba/april.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/data/nba/april.csv -------------------------------------------------------------------------------- /data/nba/december.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/data/nba/december.csv -------------------------------------------------------------------------------- /data/nba/february.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/data/nba/february.csv -------------------------------------------------------------------------------- /data/nba/january.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/data/nba/january.csv -------------------------------------------------------------------------------- /data/nba/june.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/data/nba/june.csv -------------------------------------------------------------------------------- /data/nba/march.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/data/nba/march.csv -------------------------------------------------------------------------------- /data/nba/may.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/data/nba/may.csv -------------------------------------------------------------------------------- /data/nba/november.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/data/nba/november.csv -------------------------------------------------------------------------------- /data/nba/october.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/data/nba/october.csv -------------------------------------------------------------------------------- /data/ohlcv.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/data/ohlcv.pq -------------------------------------------------------------------------------- /dupe_csv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/dupe_csv.sh -------------------------------------------------------------------------------- /env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/env.yml -------------------------------------------------------------------------------- /mem_dd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/mem_dd.py -------------------------------------------------------------------------------- /mem_pd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/mem_pd.py -------------------------------------------------------------------------------- /mem_pl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/modern-polars/HEAD/mem_pl.py --------------------------------------------------------------------------------