Skip to content

plotty is a Python-based tool designed to streamline the process of regression analysis for scientific papers. This software aims to automate and simplify regression.

License

Notifications You must be signed in to change notification settings

jackmcqueen02/plotty

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 

Repository files navigation

# plotty

plotty is a Python-based tool designed to streamline the process of regression analysis for scientific papers. This software aims to automate and simplify the regression process.

Recommended Modules

scienceplots is recommended for improved figure presentation. https://github.com/garrettj403/SciencePlots

Usage

from plotty import plotty_array

# Data without errors
x = [0,1,2,3,4,5]
y = [2,4,6,8,10,12]
data = [x,y]

# displays residual and regression fit
plotty_array(data)
from plotty import plotty_array

# Data with errors
x = [0,1,2,3,4,5]
y = [2,4,6,8,10,12]
errors = [0.1,0.1,0.1,0.1,0.1,0.1]
data = [x,y,errors]

# displays residual and regression fit
plotty_array(data)
from plotty import plotty_file

# displays residual and regression fit with data read from file
plotty_file('data.txt')

Examples

carbon_emmision_latex uk annual temp change image

Contributing

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

Please make sure to update tests as appropriate.

License

License can be found in the license file.

Badges

SciPy NumPy Matplotlib

About

plotty is a Python-based tool designed to streamline the process of regression analysis for scientific papers. This software aims to automate and simplify regression.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages