Skip to main content

Doxyplot is a plotting wrapper around matplotlib for easy plotting.

Project description

Doxyplot

Doxyplot is a plotting wrapper around matplotlib for easy plotting.

Installation

(Not ready yet) Use the package manager pip to install Doxyplot.

pip install doxyplot

Usage

import doxyplot.doxyplot_core as dp

plot = dp.Doxyplot()

x=[1,2,3,4]
y=[4,5,4.5,2]
y2=[5,7,2,1]
y3=[10,9,5,4]
y4=[5,4,2,2]

plot.append_data(x, y, 'r', 'Line1', linewidth=2.0)
plot.append_data(x, y2, 'k', 'Line2', linewidth=2.0)
plot.append_data(x,y3, c='g', label='Line3')
plot.append_data(x,y4, c='b', label='Line4')
plot.construct_plot("Doxyplot", "Time", "Velocity",save="export.png")

alt text

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

doxyplot-0.1.0.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

doxyplot-0.1.0-py3-none-any.whl (4.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page