Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion pymcr/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
""" pyMCR: Pythonic Multivariate Curve Resolution - Alternating Least Squares """
"""
pyMCR: Pythonic Multivariate Curve Resolution - Alternating Regression

pyMCR is a small package for performing multivariate curve resolution. Currently,
it implements a simple alternating regression scheme (MCR-AR). The most common
implementation is with ordinary least-squares regression, MCR-ALS.

See Also
--------
https://pages.nist.gov/pyMCR

"""
from . import mcr
from . import constraints
from . import metrics
Expand Down