Skip to content

Commit

Permalink
update report table
Browse files Browse the repository at this point in the history
add feature name into report table
  • Loading branch information
aeiwz committed Dec 9, 2024
1 parent 9293857 commit 9c11847
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion lingress/lingress.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,8 +472,10 @@ def report(self):
fpval = self.fpval_df
r2 = self.r2_df
p_adj = self.qval_df
log_2fc = self.l2_df2
log_2fc = self.l2_df2
features_name = self.features_name
stats_table = pd.concat([pval, beta, p_adj, r2, fpval, log_2fc], axis=1)
stats_table['Features'] = features_name
self.statstable = stats_table
return stats_table

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
setup(
name = 'lingress',
packages = ['lingress'],
version = '3.0.6',
version = '3.0.7',
license='MIT',
description = 'Metabolomics data analysis with univariate (linear regression) and visualization tools.',
long_description=DESCRIPTION,
author = 'aeiwz',
author_email = '[email protected]',
url = 'https://github.com/aeiwz/lingress.git',
download_url = 'https://github.com/aeiwz/lingress/archive/refs/tags/v3.0.6.tar.gz',
download_url = 'https://github.com/aeiwz/lingress/archive/refs/tags/v3.0.7.tar.gz',
keywords = ['Omics', 'Chemometrics', 'Visualization', 'Data Analysis', 'Univariate', 'Linear Regression'],
install_requires=[
'scikit-learn',
Expand Down

0 comments on commit 9c11847

Please sign in to comment.