Skip to content

Commit

Permalink
fix bug in pls
Browse files Browse the repository at this point in the history
  • Loading branch information
aeiwz committed Oct 11, 2024
1 parent 35de7fa commit 13d1b80
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion metbit/pls.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def fit(self, x: np.ndarray, y: np.ndarray,
PLS object
"""

from .base import nipals
import numpy as np
n, r = x.shape
# preallocation
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
setup(
name = 'metbit',
packages = ['metbit'],
version = '5.3.5',
version = '5.3.6',
license='MIT',
description = 'Metabolomics data analysis and visualization tools.',
author = 'aeiwz',
author_email = '[email protected]',
url = 'https://github.com/aeiwz/metbit.git',
download_url = 'https://github.com/aeiwz/metbit/archive/refs/tags/V5.3.5.tar.gz',
download_url = 'https://github.com/aeiwz/metbit/archive/refs/tags/V5.3.6.tar.gz',
keywords = ['Omics', 'Multivariate analysis', 'Visualization', 'Data Analysis', 'Metabolomics', 'Chemometrics'],
install_requires=[
'scikit-learn',
Expand Down

0 comments on commit 13d1b80

Please sign in to comment.