-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add reports module * Add template * Add config file * Add generate_figues script * Add test * Update test_reports.py * Update setup.cfg * Fix lint error * Add yaml to setup file * Update setup.cfg * Update default.yml * Update setup.cfg * Add report to example gallery * check online path * Plot coordinates * Update 10_plot_cbma_workflow.py * Update 10_plot_cbma_workflow.py * Update figures.py * Update 10_plot_cbma_workflow.py * [skip ci] update figures * [skip ci] add static plot * [skip ci] update path to report * [skip ci] update path * [skip ci] explore rtd directory tree * [skip ci] high res images * [skip ci] update path to report * [skip ci] close fig after saving * [skip ci] update path * [skip ci] try another path the report.html * [skip ci] change the path again............. * [skip ci] update path * [skip ci] update path * [skip ci] add cluster table * [skip ci] add title, caption, and description * [skip ci] update example * [skip ci] increase size of heatmap * [skip ci] add ids of studies excluded to summary * [skip ci] update table style * [skip ci] add dynamic coordinates plot * [skip ci] add legend * [skip ci] embed heatmaps wit iframe * [skip ci] change names to fit new bids-like format * [skip ci] pin pandas version * [skip ci] add summary diagnostics * [skip ci] work on copy of diagnostics * [skip ci] get threshold from diagnostics * [skip ci] add all possible combinations of results * [skip ci] add message when tables and map are empty * [skip ci] add alpha to dictionary * [skip ci] add label maps * [skip ci] add tail label * [skip ci] add mask * add documentation * fix typo * add tables naming convention to output * only plot coordinates for CBMAEstimator * fix typo * improve coverage * reduce report and yml file
- Loading branch information
1 parent
fccf509
commit 01e28ed
Showing
14 changed files
with
1,212 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
"""Reports module.""" | ||
|
||
from .base import Report, run_reports | ||
from .figures import ( | ||
gen_table, | ||
plot_clusters, | ||
plot_coordinates, | ||
plot_heatmap, | ||
plot_interactive_brain, | ||
plot_mask, | ||
plot_static_brain, | ||
) | ||
|
||
__all__ = [ | ||
"Report", | ||
"run_reports", | ||
"gen_table", | ||
"plot_clusters", | ||
"plot_coordinates", | ||
"plot_heatmap", | ||
"plot_interactive_brain", | ||
"plot_mask", | ||
"plot_static_brain", | ||
] |
Oops, something went wrong.