├── .gitattributes ├── .github └── workflows │ └── build_website.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── contributors.txt ├── how-to-release.rst ├── plotnine_examples ├── __init__.py ├── examples │ ├── Beside.ipynb │ ├── Compose.ipynb │ ├── PlotnineAnimation.ipynb │ ├── Stack.ipynb │ ├── __init__.py │ ├── aes.ipynb │ ├── after_scale.ipynb │ ├── after_stat.ipynb │ ├── data │ │ ├── API_SP.DYN.IMRT.IN_DS2_en_csv_v2 │ │ │ ├── API_SP.DYN.IMRT.IN_DS2_en_csv_v2.csv │ │ │ └── Metadata_Country_API_SP.DYN.IMRT.IN_DS2_en_csv_v2.csv │ │ ├── elements.csv │ │ ├── flights.csv │ │ ├── lands-of-ice-and-fire │ │ │ ├── LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── continents.dbf │ │ │ ├── continents.prj │ │ │ ├── continents.qpj │ │ │ ├── continents.shp │ │ │ ├── continents.shx │ │ │ ├── islands.dbf │ │ │ ├── islands.prj │ │ │ ├── islands.qpj │ │ │ ├── islands.shp │ │ │ ├── islands.shx │ │ │ ├── lakes.dbf │ │ │ ├── lakes.prj │ │ │ ├── lakes.qpj │ │ │ ├── lakes.shp │ │ │ ├── lakes.shx │ │ │ ├── landscape.dbf │ │ │ ├── landscape.prj │ │ │ ├── landscape.qpj │ │ │ ├── landscape.shp │ │ │ ├── landscape.shx │ │ │ ├── locations.dbf │ │ │ ├── locations.prj │ │ │ ├── locations.qpj │ │ │ ├── locations.shp │ │ │ ├── locations.shx │ │ │ ├── officialMapAreas.dbf │ │ │ ├── officialMapAreas.prj │ │ │ ├── officialMapAreas.qpj │ │ │ ├── officialMapAreas.shp │ │ │ ├── officialMapAreas.shx │ │ │ ├── political.dbf │ │ │ ├── political.prj │ │ │ ├── political.qpj │ │ │ ├── political.shp │ │ │ ├── political.shx │ │ │ ├── regions.dbf │ │ │ ├── regions.prj │ │ │ ├── regions.qpj │ │ │ ├── regions.shp │ │ │ ├── regions.shx │ │ │ ├── rivers.dbf │ │ │ ├── rivers.prj │ │ │ ├── rivers.qpj │ │ │ ├── rivers.shp │ │ │ ├── rivers.shx │ │ │ ├── roads.dbf │ │ │ ├── roads.prj │ │ │ ├── roads.qpj │ │ │ ├── roads.shp │ │ │ ├── roads.shx │ │ │ ├── wall.dbf │ │ │ ├── wall.prj │ │ │ ├── wall.qpj │ │ │ ├── wall.shp │ │ │ └── wall.shx │ │ └── survey-social-media.csv │ ├── facet_grid.ipynb │ ├── facet_wrap.ipynb │ ├── factor.ipynb │ ├── geom_abline.ipynb │ ├── geom_area.ipynb │ ├── geom_bar.ipynb │ ├── geom_boxplot.ipynb │ ├── geom_col.ipynb │ ├── geom_count.ipynb │ ├── geom_density.ipynb │ ├── geom_histogram.ipynb │ ├── geom_hline.ipynb │ ├── geom_line.ipynb │ ├── geom_linerange.ipynb │ ├── geom_map.ipynb │ ├── geom_path.ipynb │ ├── geom_point.ipynb │ ├── geom_segment.ipynb │ ├── geom_smooth.ipynb │ ├── geom_step.ipynb │ ├── geom_tile.ipynb │ ├── geom_violin.ipynb │ ├── geom_vline.ipynb │ ├── get_aesthetic_limits.ipynb │ ├── labs.ipynb │ ├── plot_spacer.ipynb │ ├── reorder.ipynb │ ├── scale_color_discrete.ipynb │ ├── scale_fill_continuous.ipynb │ ├── scale_shape_identity.ipynb │ ├── scale_x_continuous.ipynb │ ├── stage.ipynb │ ├── theme.ipynb │ ├── theme_bw.ipynb │ └── theme_classic.ipynb └── tutorials │ ├── __init__.py │ ├── images │ └── pyqt5-application.png │ ├── miscellaneous-a-pyqt5-application.ipynb │ ├── miscellaneous-altering-colors.ipynb │ ├── miscellaneous-automatic-grouping-insufficient.ipynb │ ├── miscellaneous-manipulating-date-breaks-and-date-labels.ipynb │ ├── miscellaneous-order-plot-series.ipynb │ ├── miscellaneous-precomputed-boxplot.ipynb │ ├── miscellaneous-show-counts-and-percentages-for-bar-plots.ipynb │ ├── miscellaneous-show-counts-on-a-stacked-bar-plot.ipynb │ └── miscellaneous-using-letter-as-shapes.ipynb ├── pyproject.toml ├── requirements.txt └── tools └── clean-notebook /.gitattributes: -------------------------------------------------------------------------------- 1 | *.ipynb filter=clean-notebooks 2 | -------------------------------------------------------------------------------- /.github/workflows/build_website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/.github/workflows/build_website.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/README.md -------------------------------------------------------------------------------- /contributors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/contributors.txt -------------------------------------------------------------------------------- /how-to-release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/how-to-release.rst -------------------------------------------------------------------------------- /plotnine_examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/__init__.py -------------------------------------------------------------------------------- /plotnine_examples/examples/Beside.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/Beside.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/Compose.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/Compose.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/PlotnineAnimation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/PlotnineAnimation.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/Stack.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/Stack.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plotnine_examples/examples/aes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/aes.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/after_scale.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/after_scale.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/after_stat.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/after_stat.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/data/API_SP.DYN.IMRT.IN_DS2_en_csv_v2/API_SP.DYN.IMRT.IN_DS2_en_csv_v2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/API_SP.DYN.IMRT.IN_DS2_en_csv_v2/API_SP.DYN.IMRT.IN_DS2_en_csv_v2.csv -------------------------------------------------------------------------------- /plotnine_examples/examples/data/API_SP.DYN.IMRT.IN_DS2_en_csv_v2/Metadata_Country_API_SP.DYN.IMRT.IN_DS2_en_csv_v2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/API_SP.DYN.IMRT.IN_DS2_en_csv_v2/Metadata_Country_API_SP.DYN.IMRT.IN_DS2_en_csv_v2.csv -------------------------------------------------------------------------------- /plotnine_examples/examples/data/elements.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/elements.csv -------------------------------------------------------------------------------- /plotnine_examples/examples/data/flights.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/flights.csv -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/LICENSE.txt -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/README.txt -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/continents.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/continents.dbf -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/continents.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/continents.prj -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/continents.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/continents.qpj -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/continents.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/continents.shp -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/continents.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/continents.shx -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/islands.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/islands.dbf -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/islands.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/islands.prj -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/islands.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/islands.qpj -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/islands.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/islands.shp -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/islands.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/islands.shx -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/lakes.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/lakes.dbf -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/lakes.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/lakes.prj -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/lakes.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/lakes.qpj -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/lakes.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/lakes.shp -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/lakes.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/lakes.shx -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/landscape.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/landscape.dbf -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/landscape.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/landscape.prj -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/landscape.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/landscape.qpj -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/landscape.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/landscape.shp -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/landscape.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/landscape.shx -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/locations.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/locations.dbf -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/locations.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/locations.prj -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/locations.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/locations.qpj -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/locations.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/locations.shp -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/locations.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/locations.shx -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/officialMapAreas.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/officialMapAreas.dbf -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/officialMapAreas.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/officialMapAreas.prj -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/officialMapAreas.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/officialMapAreas.qpj -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/officialMapAreas.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/officialMapAreas.shp -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/officialMapAreas.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/officialMapAreas.shx -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/political.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/political.dbf -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/political.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/political.prj -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/political.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/political.qpj -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/political.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/political.shp -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/political.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/political.shx -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/regions.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/regions.dbf -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/regions.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/regions.prj -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/regions.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/regions.qpj -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/regions.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/regions.shp -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/regions.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/regions.shx -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/rivers.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/rivers.dbf -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/rivers.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/rivers.prj -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/rivers.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/rivers.qpj -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/rivers.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/rivers.shp -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/rivers.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/rivers.shx -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/roads.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/roads.dbf -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/roads.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/roads.prj -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/roads.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/roads.qpj -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/roads.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/roads.shp -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/roads.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/roads.shx -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/wall.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/wall.dbf -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/wall.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/wall.prj -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/wall.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/wall.qpj -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/wall.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/wall.shp -------------------------------------------------------------------------------- /plotnine_examples/examples/data/lands-of-ice-and-fire/wall.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/lands-of-ice-and-fire/wall.shx -------------------------------------------------------------------------------- /plotnine_examples/examples/data/survey-social-media.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/data/survey-social-media.csv -------------------------------------------------------------------------------- /plotnine_examples/examples/facet_grid.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/facet_grid.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/facet_wrap.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/facet_wrap.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/factor.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/factor.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/geom_abline.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/geom_abline.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/geom_area.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/geom_area.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/geom_bar.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/geom_bar.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/geom_boxplot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/geom_boxplot.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/geom_col.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/geom_col.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/geom_count.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/geom_count.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/geom_density.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/geom_density.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/geom_histogram.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/geom_histogram.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/geom_hline.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/geom_hline.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/geom_line.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/geom_line.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/geom_linerange.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/geom_linerange.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/geom_map.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/geom_map.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/geom_path.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/geom_path.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/geom_point.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/geom_point.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/geom_segment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/geom_segment.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/geom_smooth.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/geom_smooth.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/geom_step.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/geom_step.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/geom_tile.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/geom_tile.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/geom_violin.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/geom_violin.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/geom_vline.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/geom_vline.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/get_aesthetic_limits.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/get_aesthetic_limits.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/labs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/labs.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/plot_spacer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/plot_spacer.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/reorder.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/reorder.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/scale_color_discrete.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/scale_color_discrete.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/scale_fill_continuous.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/scale_fill_continuous.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/scale_shape_identity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/scale_shape_identity.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/scale_x_continuous.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/scale_x_continuous.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/stage.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/stage.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/theme.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/theme.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/theme_bw.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/theme_bw.ipynb -------------------------------------------------------------------------------- /plotnine_examples/examples/theme_classic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/examples/theme_classic.ipynb -------------------------------------------------------------------------------- /plotnine_examples/tutorials/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plotnine_examples/tutorials/images/pyqt5-application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/tutorials/images/pyqt5-application.png -------------------------------------------------------------------------------- /plotnine_examples/tutorials/miscellaneous-a-pyqt5-application.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/tutorials/miscellaneous-a-pyqt5-application.ipynb -------------------------------------------------------------------------------- /plotnine_examples/tutorials/miscellaneous-altering-colors.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/tutorials/miscellaneous-altering-colors.ipynb -------------------------------------------------------------------------------- /plotnine_examples/tutorials/miscellaneous-automatic-grouping-insufficient.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/tutorials/miscellaneous-automatic-grouping-insufficient.ipynb -------------------------------------------------------------------------------- /plotnine_examples/tutorials/miscellaneous-manipulating-date-breaks-and-date-labels.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/tutorials/miscellaneous-manipulating-date-breaks-and-date-labels.ipynb -------------------------------------------------------------------------------- /plotnine_examples/tutorials/miscellaneous-order-plot-series.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/tutorials/miscellaneous-order-plot-series.ipynb -------------------------------------------------------------------------------- /plotnine_examples/tutorials/miscellaneous-precomputed-boxplot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/tutorials/miscellaneous-precomputed-boxplot.ipynb -------------------------------------------------------------------------------- /plotnine_examples/tutorials/miscellaneous-show-counts-and-percentages-for-bar-plots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/tutorials/miscellaneous-show-counts-and-percentages-for-bar-plots.ipynb -------------------------------------------------------------------------------- /plotnine_examples/tutorials/miscellaneous-show-counts-on-a-stacked-bar-plot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/tutorials/miscellaneous-show-counts-on-a-stacked-bar-plot.ipynb -------------------------------------------------------------------------------- /plotnine_examples/tutorials/miscellaneous-using-letter-as-shapes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/plotnine_examples/tutorials/miscellaneous-using-letter-as-shapes.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | plotnine 2 | scikit-misc 3 | sklearn 4 | jupyter 5 | -------------------------------------------------------------------------------- /tools/clean-notebook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/has2k1/plotnine-examples/HEAD/tools/clean-notebook --------------------------------------------------------------------------------