Metadata-Version: 2.4
Name: scisuitplot
Version: 2.0.0
Summary: A visualization package designed with engineers in mind..
Home-page: https://www.pebytes.com
Author: Gokhan Bingol
Author-email: gbingol@hotmail.com
License: GPLv3
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: C++
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Manufacturing
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: scisuit
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

## scisuitplot

Scientific visualization library designed with engineers in mind..


Completely interactive charts: 
- Bar, 
- Box-Whisker, 
- Bubble, 
- Direction Field, 
- Histogram, 
- Moody, 
- Psychrometry,
- QQnorm, 
- QQplot, 
- Quiver, 
- Scatter 


&nbsp;

A simple scatter chart example:


```python
import numpy as np
import scisuit.plot as plt 

x = np.arange(1, 6)
y = x**2 - 2*x + 5

plt.scatter(x=x, y=y)
plt.show()
```

&nbsp;

See in action on YouTube: 
- [Scatter Chart](https://youtu.be/RArJ-fCOWnY), 
- [Psychrometric Chart](https://youtu.be/Uv4npLsV1sY)
