Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 828 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 828 Bytes

Chemical Engineering Tools

This package is comprised of various math tools that I found myself using fairly often. The tools are separated into classes that categorize the methods into groups/topics in the math.py file.

Quick Installation: (using pip3)

pip3 install git+https://github.com/alanclayrichard/chemE.git

Use in python:

import chemE_tools.math as tools

predicted_model = tools.Regression(x_train,y_train,1,x_test)

This package is highly dependent on numpy and pandas and also uses tqdm in some for loops. Donations are welcome (found in .github/funding)

(set up from this guide)