├── LICENSE ├── README.md ├── eplot ├── __init__.py └── eplot.py ├── examples └── eplot usage example.ipynb └── img ├── bar_figure.png ├── box_figure.png ├── box_series_figure.png ├── countplot_figure.png ├── histogram_figure.png ├── line_figure.png ├── pie_figure.png ├── pie_rose_figure.png ├── scatter3d_category_figure.png └── scatter_category_figure.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjgao/eplot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjgao/eplot/HEAD/README.md -------------------------------------------------------------------------------- /eplot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjgao/eplot/HEAD/eplot/__init__.py -------------------------------------------------------------------------------- /eplot/eplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjgao/eplot/HEAD/eplot/eplot.py -------------------------------------------------------------------------------- /examples/eplot usage example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjgao/eplot/HEAD/examples/eplot usage example.ipynb -------------------------------------------------------------------------------- /img/bar_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjgao/eplot/HEAD/img/bar_figure.png -------------------------------------------------------------------------------- /img/box_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjgao/eplot/HEAD/img/box_figure.png -------------------------------------------------------------------------------- /img/box_series_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjgao/eplot/HEAD/img/box_series_figure.png -------------------------------------------------------------------------------- /img/countplot_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjgao/eplot/HEAD/img/countplot_figure.png -------------------------------------------------------------------------------- /img/histogram_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjgao/eplot/HEAD/img/histogram_figure.png -------------------------------------------------------------------------------- /img/line_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjgao/eplot/HEAD/img/line_figure.png -------------------------------------------------------------------------------- /img/pie_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjgao/eplot/HEAD/img/pie_figure.png -------------------------------------------------------------------------------- /img/pie_rose_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjgao/eplot/HEAD/img/pie_rose_figure.png -------------------------------------------------------------------------------- /img/scatter3d_category_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjgao/eplot/HEAD/img/scatter3d_category_figure.png -------------------------------------------------------------------------------- /img/scatter_category_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjgao/eplot/HEAD/img/scatter_category_figure.png --------------------------------------------------------------------------------