├── .gitignore ├── LICENSE ├── README.md ├── img ├── hist_sample.png ├── pie_pg.png ├── plot_func.png ├── scatter_sample.png └── scatter_temperature.png ├── matplotcli.py ├── sample.json └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmoura/matplotcli/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmoura/matplotcli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmoura/matplotcli/HEAD/README.md -------------------------------------------------------------------------------- /img/hist_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmoura/matplotcli/HEAD/img/hist_sample.png -------------------------------------------------------------------------------- /img/pie_pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmoura/matplotcli/HEAD/img/pie_pg.png -------------------------------------------------------------------------------- /img/plot_func.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmoura/matplotcli/HEAD/img/plot_func.png -------------------------------------------------------------------------------- /img/scatter_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmoura/matplotcli/HEAD/img/scatter_sample.png -------------------------------------------------------------------------------- /img/scatter_temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmoura/matplotcli/HEAD/img/scatter_temperature.png -------------------------------------------------------------------------------- /matplotcli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmoura/matplotcli/HEAD/matplotcli.py -------------------------------------------------------------------------------- /sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmoura/matplotcli/HEAD/sample.json -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcmoura/matplotcli/HEAD/setup.py --------------------------------------------------------------------------------