plotfig 1.2.1__tar.gz → 1.3.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {plotfig-1.2.1 → plotfig-1.3.0}/.github/workflows/ci.yml +1 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/.gitignore +4 -1
- {plotfig-1.2.1 → plotfig-1.3.0}/CHANGELOG.md +17 -0
- plotfig-1.3.0/PKG-INFO +92 -0
- plotfig-1.3.0/README.md +74 -0
- plotfig-1.3.0/docs/assets/atlas_csv/chimpanzee_bna.csv +201 -0
- plotfig-1.3.0/docs/assets/atlas_csv/human_bna.csv +211 -0
- plotfig-1.3.0/docs/assets/atlas_csv/human_glasser.csv +361 -0
- plotfig-1.3.0/docs/assets/atlas_csv/macaque_bna.csv +249 -0
- plotfig-1.3.0/docs/assets/atlas_csv/macaque_charm5.csv +177 -0
- plotfig-1.3.0/docs/assets/atlas_csv/macaque_charm6.csv +269 -0
- plotfig-1.3.0/docs/assets/atlas_csv/macaque_d99.csv +299 -0
- plotfig-1.3.0/docs/index.md +35 -0
- plotfig-1.3.0/docs/installation.md +44 -0
- plotfig-1.3.0/docs/usage/brain_surface.md +104 -0
- plotfig-1.3.0/docs/usage/brain_surface_files/brain_surface_5_0.png +0 -0
- plotfig-1.3.0/docs/usage/brain_surface_files/brain_surface_6_0.png +0 -0
- plotfig-1.3.0/docs/usage/brain_surface_files/brain_surface_9_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/correlation.md +13 -6
- plotfig-1.3.0/docs/usage/correlation_files/correlation_3_0.png +0 -0
- plotfig-1.3.0/docs/usage/correlation_files/correlation_4_0.png +0 -0
- plotfig-1.3.0/docs/usage/correlation_files/correlation_6_0.png +0 -0
- plotfig-1.3.0/docs/usage/correlation_files/correlation_7_0.png +0 -0
- plotfig-1.3.0/docs/usage/correlation_files/correlation_9_0.png +0 -0
- plotfig-1.3.0/docs/usage/matrix.md +58 -0
- plotfig-1.3.0/docs/usage/matrix_files/matrix_3_0.png +0 -0
- plotfig-1.3.0/docs/usage/matrix_files/matrix_4_0.png +0 -0
- plotfig-1.3.0/docs/usage/matrix_files/matrix_6_0.png +0 -0
- plotfig-1.3.0/docs/usage/matrix_files/matrix_7_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/multi_groups.md +22 -8
- plotfig-1.3.0/docs/usage/multi_groups_files/multi_groups_3_0.png +0 -0
- plotfig-1.3.0/docs/usage/multi_groups_files/multi_groups_6_0.png +0 -0
- plotfig-1.3.0/docs/usage/multi_groups_files/multi_groups_9_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group.md +18 -16
- plotfig-1.3.0/docs/usage/single_group_files/single_group_12_0.png +0 -0
- plotfig-1.3.0/docs/usage/single_group_files/single_group_14_0.png +0 -0
- plotfig-1.3.0/docs/usage/single_group_files/single_group_34_0.png +0 -0
- plotfig-1.3.0/docs/usage/single_group_files/single_group_3_0.png +0 -0
- plotfig-1.3.0/docs/usage/single_group_files/single_group_6_0.png +0 -0
- plotfig-1.3.0/docs/usage/single_group_files/single_group_8_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/mkdocs.yml +29 -17
- plotfig-1.3.0/overrides/main.html +5 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/pyproject.toml +6 -2
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/__init__.py +3 -1
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/bar.py +191 -116
- plotfig-1.3.0/src/plotfig/brain_surface.py +231 -0
- plotfig-1.2.1/src/plotfig/brain_surface.py → plotfig-1.3.0/src/plotfig/brain_surface_old.py +28 -1
- plotfig-1.3.0/src/plotfig/data/neurodata/atlases/chimpanzee_BNA/ChimpBNA.L.32k_fs_LR.label.gii +260 -0
- plotfig-1.3.0/src/plotfig/data/neurodata/atlases/chimpanzee_BNA/ChimpBNA.R.32k_fs_LR.label.gii +260 -0
- plotfig-1.3.0/src/plotfig/data/neurodata/atlases/human_BNA/fsaverage.L.BNA.32k_fs_LR.label.gii +269 -0
- plotfig-1.3.0/src/plotfig/data/neurodata/atlases/human_BNA/fsaverage.R.BNA.32k_fs_LR.label.gii +269 -0
- plotfig-1.3.0/src/plotfig/data/neurodata/atlases/human_Glasser/fsaverage.L.Glasser.32k_fs_LR.label.gii +419 -0
- plotfig-1.3.0/src/plotfig/data/neurodata/atlases/human_Glasser/fsaverage.R.Glasser.32k_fs_LR.label.gii +419 -0
- plotfig-1.3.0/src/plotfig/data/neurodata/atlases/macaque_BNA/MBNA_124_32k_L.label.gii +307 -0
- plotfig-1.3.0/src/plotfig/data/neurodata/atlases/macaque_BNA/MBNA_124_32k_R.label.gii +307 -0
- plotfig-1.3.0/src/plotfig/data/neurodata/atlases/macaque_CHARM5/L.charm5.label.gii +235 -0
- plotfig-1.3.0/src/plotfig/data/neurodata/atlases/macaque_CHARM5/R.charm5.label.gii +235 -0
- plotfig-1.3.0/src/plotfig/data/neurodata/atlases/macaque_CHARM6/L.charm6.label.gii +327 -0
- plotfig-1.3.0/src/plotfig/data/neurodata/atlases/macaque_CHARM6/R.charm6.label.gii +327 -0
- plotfig-1.3.0/src/plotfig/data/neurodata/atlases/macaque_D99/L.d99.label.gii +357 -0
- plotfig-1.3.0/src/plotfig/data/neurodata/atlases/macaque_D99/R.d99.label.gii +357 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/uv.lock +668 -621
- plotfig-1.2.1/PKG-INFO +0 -52
- plotfig-1.2.1/README.md +0 -34
- plotfig-1.2.1/docs/index.md +0 -15
- plotfig-1.2.1/docs/installation.md +0 -37
- plotfig-1.2.1/docs/usage/brain_surface.md +0 -2014
- plotfig-1.2.1/docs/usage/brain_surface_files/brain_surface_5_0.png +0 -0
- plotfig-1.2.1/docs/usage/brain_surface_files/brain_surface_6_0.png +0 -0
- plotfig-1.2.1/docs/usage/brain_surface_files/brain_surface_9_0.png +0 -0
- plotfig-1.2.1/docs/usage/matrix.md +0 -66
- plotfig-1.2.1/docs/usage/single_group_files/single_group_12_0.png +0 -0
- plotfig-1.2.1/docs/usage/single_group_files/single_group_14_0.png +0 -0
- plotfig-1.2.1/docs/usage/single_group_files/single_group_34_0.png +0 -0
- plotfig-1.2.1/docs/usage/single_group_files/single_group_3_0.png +0 -0
- plotfig-1.2.1/docs/usage/single_group_files/single_group_6_0.png +0 -0
- plotfig-1.2.1/docs/usage/single_group_files/single_group_8_0.png +0 -0
- plotfig-1.2.1/src/plotfig/data/neurodata/atlases/chimpanzee_BNA/ChimpBNA.L.32k_fs_LR.label.gii +0 -259
- plotfig-1.2.1/src/plotfig/data/neurodata/atlases/chimpanzee_BNA/ChimpBNA.R.32k_fs_LR.label.gii +0 -18
- plotfig-1.2.1/src/plotfig/data/neurodata/atlases/human_BNA/fsaverage.L.BNA.32k_fs_LR.label.gii +0 -269
- plotfig-1.2.1/src/plotfig/data/neurodata/atlases/human_BNA/fsaverage.R.BNA.32k_fs_LR.label.gii +0 -269
- plotfig-1.2.1/src/plotfig/data/neurodata/atlases/human_Glasser/fsaverage.L.Glasser.32k_fs_LR.label.gii +0 -18
- plotfig-1.2.1/src/plotfig/data/neurodata/atlases/human_Glasser/fsaverage.R.Glasser.32k_fs_LR.label.gii +0 -18
- plotfig-1.2.1/src/plotfig/data/neurodata/atlases/macaque_BNA/MBNA_124_32k_L.label.gii +0 -307
- plotfig-1.2.1/src/plotfig/data/neurodata/atlases/macaque_BNA/MBNA_124_32k_R.label.gii +0 -18
- plotfig-1.2.1/src/plotfig/data/neurodata/atlases/macaque_CHARM5/L.charm5.label.gii +0 -18
- plotfig-1.2.1/src/plotfig/data/neurodata/atlases/macaque_CHARM5/R.charm5.label.gii +0 -18
- plotfig-1.2.1/src/plotfig/data/neurodata/atlases/macaque_CHARM6/L.charm6.label.gii +0 -18
- plotfig-1.2.1/src/plotfig/data/neurodata/atlases/macaque_CHARM6/R.charm6.label.gii +0 -18
- plotfig-1.2.1/src/plotfig/data/neurodata/atlases/macaque_D99/L.d99.label.gii +0 -357
- plotfig-1.2.1/src/plotfig/data/neurodata/atlases/macaque_D99/R.d99.label.gii +0 -357
- {plotfig-1.2.1 → plotfig-1.3.0}/.github/workflows/SyncToGitee.yml +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/.python-version +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/LICENSE +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/api/index.md +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/assets/plotfig.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_connectivity.md +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_connectivity_files/human.gif +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_10_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_10_1.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_11_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_12_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_13_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_13_1.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_14_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_14_1.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_15_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_16_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_17_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_18_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_19_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_20_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_21_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_23_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_24_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_25_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_4_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_6_1.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_7_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_7_1.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_8_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_8_1.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/brain_surface_files/brain_surface_9_1.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/circos.md +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/circos_files/circos_1_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/circos_files/circos_1_1.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/circos_files/circos_2_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/correlation_files/correlation_2_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/correlation_files/correlation_5_0.png +0 -0
- /plotfig-1.2.1/docs/usage/correlation_files/correlation_7_0.png → /plotfig-1.3.0/docs/usage/correlation_files/correlation_8_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/matrix_files/matrix_2_1.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/matrix_files/matrix_5_1.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/multi_groups_files/multi_groups_2_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/multi_groups_files/multi_groups_5_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/multi_groups_files/multi_groups_8_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group_files/single_group_11_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group_files/single_group_13_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group_files/single_group_16_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group_files/single_group_17_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group_files/single_group_19_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group_files/single_group_20_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group_files/single_group_21_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group_files/single_group_22_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group_files/single_group_23_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group_files/single_group_24_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group_files/single_group_25_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group_files/single_group_26_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group_files/single_group_27_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group_files/single_group_28_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group_files/single_group_2_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group_files/single_group_30_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group_files/single_group_31_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group_files/single_group_33_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group_files/single_group_35_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group_files/single_group_36_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group_files/single_group_39_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group_files/single_group_5_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group_files/single_group_6_1.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/docs/usage/single_group_files/single_group_7_0.png +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/brain_connection.py +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/circos.py +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/correlation.py +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/atlas_tables/chimpanzee_bna.csv +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/atlas_tables/human_bna.csv +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/atlas_tables/human_glasser.csv +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/atlas_tables/macaque_bna.csv +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/atlas_tables/macaque_charm5.csv +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/atlas_tables/macaque_charm5_add_13_sgms.csv +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/atlas_tables/macaque_charm6.csv +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/atlas_tables/macaque_d99.csv +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/chimpanzee_BNA/ChimpYerkes29_v1.2.L.midthickness.32k_fs_LR.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/chimpanzee_BNA/ChimpYerkes29_v1.2.L.veryinflated.32k_fs_LR.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/chimpanzee_BNA/ChimpYerkes29_v1.2.R.midthickness.32k_fs_LR.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/chimpanzee_BNA/ChimpYerkes29_v1.2.R.veryinflated.32k_fs_LR.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/README.md +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-L_desc-nomedialwall_dparc.label.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-L_desc-sulc_midthickness.shape.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-L_desc-vaavg_midthickness.shape.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-L_inflated.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-L_midthickness.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-L_sphere.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-L_veryinflated.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-R_desc-nomedialwall_dparc.label.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-R_desc-sulc_midthickness.shape.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-R_desc-vaavg_midthickness.shape.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-R_inflated.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-R_midthickness.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-R_sphere.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_den-32k_hemi-R_veryinflated.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_space-fsaverage_den-32k_hemi-L_sphere.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/human_fsLR/tpl-fsLR_space-fsaverage_den-32k_hemi-R_sphere.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/macaque_BNA/civm.L.inflated.32k_fs_LR.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/macaque_BNA/civm.L.midthickness.32k_fs_LR.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/macaque_BNA/civm.L.pial.32k_fs_LR.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/macaque_BNA/civm.L.veryinflated.32k_fs_LR.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/macaque_BNA/civm.L.white.32k_fs_LR.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/macaque_BNA/civm.R.inflated.32k_fs_LR.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/macaque_BNA/civm.R.midthickness.32k_fs_LR.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/macaque_BNA/civm.R.pial.32k_fs_LR.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/macaque_BNA/civm.R.veryinflated.32k_fs_LR.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/macaque_BNA/civm.R.white.32k_fs_LR.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/macaque_NMT2/L.gray_surface.inf_300.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/macaque_NMT2/L.gray_surface.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/macaque_NMT2/L.mid_surface.inf_300.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/macaque_NMT2/L.mid_surface.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/macaque_NMT2/L.white_surface.inf_300.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/macaque_NMT2/L.white_surface.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/macaque_NMT2/R.gray_surface.inf_300.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/macaque_NMT2/R.gray_surface.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/macaque_NMT2/R.mid_surface.inf_300.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/macaque_NMT2/R.mid_surface.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/macaque_NMT2/R.white_surface.inf_300.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/surfaces/macaque_NMT2/R.white_surface.surf.gii +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/data/neurodata/volumes/macaque_NMT2/CHARM5_add_13_sgms_asym.nii.gz +0 -0
- {plotfig-1.2.1 → plotfig-1.3.0}/src/plotfig/matrix.py +0 -0
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
## v1.3.0 (2025-07-28)
|
|
2
|
+
|
|
3
|
+
### Feat
|
|
4
|
+
|
|
5
|
+
- **bar**: add one-sample t-test functionality
|
|
6
|
+
|
|
7
|
+
### Fix
|
|
8
|
+
|
|
9
|
+
- **bar**: isolate random number generator inside function
|
|
10
|
+
|
|
11
|
+
### Refactor
|
|
12
|
+
|
|
13
|
+
- **surface**: unify brain surface plotting with new plot_brain_surface_figure
|
|
14
|
+
- **bar**: replace print with warnings.warn
|
|
15
|
+
- **bar**: rename arguments in plot_one_group_bar_figure
|
|
16
|
+
- **tests**: remove unused tests folder
|
|
17
|
+
|
|
1
18
|
## v1.2.1 (2025-07-24)
|
|
2
19
|
|
|
3
20
|
### Fix
|
plotfig-1.3.0/PKG-INFO
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: plotfig
|
|
3
|
+
Version: 1.3.0
|
|
4
|
+
Summary: Scientific plotting package for Cognitive neuroscience
|
|
5
|
+
Author-email: Ricardo Ryn <ricardoRyn1317@gmail.com>
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
Keywords: neuroscience,plotting,visualization
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
|
+
Requires-Dist: matplotlib>=3.10.1
|
|
10
|
+
Requires-Dist: mne-connectivity>=0.7.0
|
|
11
|
+
Requires-Dist: nibabel>=5.3.2
|
|
12
|
+
Requires-Dist: numpy>=2.2.4
|
|
13
|
+
Requires-Dist: pandas>=2.2.3
|
|
14
|
+
Requires-Dist: plotly>=6.0.1
|
|
15
|
+
Requires-Dist: scipy>=1.15.2
|
|
16
|
+
Requires-Dist: surfplot
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# 简介
|
|
20
|
+
|
|
21
|
+
`plotfig` 是一个专为科学数据可视化设计的 Python 库,致力于为认知神经科研工作人员提供高效、易用且美观的图形绘制工具。
|
|
22
|
+
该项目基于业界主流的可视化库—— `matplotlib`、`surfplot` 和 `plotly` 开发,融合了三者的强大功能,能够满足神经科学、脑连接组学、相关性分析、矩阵可视化等多种科研场景下的复杂绘图需求。
|
|
23
|
+
|
|
24
|
+

|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
## 项目结构
|
|
28
|
+
|
|
29
|
+
项目采用模块化设计,核心代码位于 `src/plotfig/` 目录下,包含如下主要功能模块:
|
|
30
|
+
|
|
31
|
+
- `bar.py`:条形图绘制,适用于分组数据的对比展示。
|
|
32
|
+
- `correlation.py`:相关性矩阵可视化,便于分析变量间的相关性分布。
|
|
33
|
+
- `matrix.py`:通用矩阵可视化,支持多种配色和注释方式。
|
|
34
|
+
- `brain_surface.py`:脑表面可视化,利用 `surfplot` 实现三维脑表面图集结构的绘制。
|
|
35
|
+
- `brain_connection.py`:玻璃脑连接可视化,支持复杂的脑网络结构展示。
|
|
36
|
+
- `circos.py`:环状图(Circos)绘制,适合平面展示脑区之间的连接关系。
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
## 文档与示例
|
|
40
|
+
|
|
41
|
+
`plotfig` 提供了网页文档和使用示例。具体参见[使用教程](https://ricardoryn.github.io/plotfig/)。
|
|
42
|
+
|
|
43
|
+
`plotfig` API 设计简洁,参数灵活,适合科研人员和数据分析师快速集成到自己的数据分析流程中。
|
|
44
|
+
其模块化架构便于后续功能扩展和自定义开发。
|
|
45
|
+
结合 `matplotlib` 支持矢量图或高分辨率位图和交互式 HTML 输出,适合论文发表和学术展示。
|
|
46
|
+
|
|
47
|
+
# 安装
|
|
48
|
+
|
|
49
|
+
## 普通安装
|
|
50
|
+
|
|
51
|
+
`plotfig` 支持通过 `pip` 或源码安装,要求 Python 3.11 及以上版本。
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
**使用 pip 安装 <small>(推荐)</small>**
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
pip install plotfig
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
**使用 GitHub 源码安装**
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
git clone https://github.com/RicardoRyn/plotfig.git
|
|
64
|
+
cd plotfig
|
|
65
|
+
pip install .
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## 开发版安装
|
|
69
|
+
|
|
70
|
+
当你希望参与 `plotfig` 的开发,或想在使用过程中尝试尚未正式发布的新功能、最新修复的 bug 时,可以选择以开发模式安装。
|
|
71
|
+
该方式会以“可编辑模式(editable mode)”将项目安装到环境中,使你对本地源码的修改可以立即生效,非常适合用于开发、调试和贡献代码。
|
|
72
|
+
|
|
73
|
+
建议先 Fork 仓库,然后克隆你自己的 Fork:
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
git clone -b dev https://github.com/<your-username>/plotfig.git
|
|
77
|
+
cd plotfig
|
|
78
|
+
pip install -e .
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
## 依赖要求
|
|
82
|
+
|
|
83
|
+
`plotfig` 依赖若干核心库,这些依赖会在安装过程中自动处理,但建议用户事先了解其版本要求以避免兼容性问题。
|
|
84
|
+
|
|
85
|
+
- [matplotlib](https://matplotlib.org/) ≥ 3.10.1
|
|
86
|
+
- [mne-connectivity](https://mne.tools/mne-connectivity/stable/index.html) ≥ 0.7.0
|
|
87
|
+
- [nibabel](https://nipy.org/nibabel/) ≥ 5.3.2
|
|
88
|
+
- [numpy](https://numpy.org/) ≥ 2.2.4
|
|
89
|
+
- [pandas](https://pandas.pydata.org/) ≥ 2.2.3
|
|
90
|
+
- [plotly](https://plotly.com/) ≥ 6.0.1
|
|
91
|
+
- [scipy](https://scipy.org/) ≥ 1.15.2
|
|
92
|
+
- [surfplot](https://surfplot.readthedocs.io/en/latest/index.html) ≥ 0.2.0
|
plotfig-1.3.0/README.md
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# 简介
|
|
2
|
+
|
|
3
|
+
`plotfig` 是一个专为科学数据可视化设计的 Python 库,致力于为认知神经科研工作人员提供高效、易用且美观的图形绘制工具。
|
|
4
|
+
该项目基于业界主流的可视化库—— `matplotlib`、`surfplot` 和 `plotly` 开发,融合了三者的强大功能,能够满足神经科学、脑连接组学、相关性分析、矩阵可视化等多种科研场景下的复杂绘图需求。
|
|
5
|
+
|
|
6
|
+

|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
## 项目结构
|
|
10
|
+
|
|
11
|
+
项目采用模块化设计,核心代码位于 `src/plotfig/` 目录下,包含如下主要功能模块:
|
|
12
|
+
|
|
13
|
+
- `bar.py`:条形图绘制,适用于分组数据的对比展示。
|
|
14
|
+
- `correlation.py`:相关性矩阵可视化,便于分析变量间的相关性分布。
|
|
15
|
+
- `matrix.py`:通用矩阵可视化,支持多种配色和注释方式。
|
|
16
|
+
- `brain_surface.py`:脑表面可视化,利用 `surfplot` 实现三维脑表面图集结构的绘制。
|
|
17
|
+
- `brain_connection.py`:玻璃脑连接可视化,支持复杂的脑网络结构展示。
|
|
18
|
+
- `circos.py`:环状图(Circos)绘制,适合平面展示脑区之间的连接关系。
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
## 文档与示例
|
|
22
|
+
|
|
23
|
+
`plotfig` 提供了网页文档和使用示例。具体参见[使用教程](https://ricardoryn.github.io/plotfig/)。
|
|
24
|
+
|
|
25
|
+
`plotfig` API 设计简洁,参数灵活,适合科研人员和数据分析师快速集成到自己的数据分析流程中。
|
|
26
|
+
其模块化架构便于后续功能扩展和自定义开发。
|
|
27
|
+
结合 `matplotlib` 支持矢量图或高分辨率位图和交互式 HTML 输出,适合论文发表和学术展示。
|
|
28
|
+
|
|
29
|
+
# 安装
|
|
30
|
+
|
|
31
|
+
## 普通安装
|
|
32
|
+
|
|
33
|
+
`plotfig` 支持通过 `pip` 或源码安装,要求 Python 3.11 及以上版本。
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
**使用 pip 安装 <small>(推荐)</small>**
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
pip install plotfig
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
**使用 GitHub 源码安装**
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
git clone https://github.com/RicardoRyn/plotfig.git
|
|
46
|
+
cd plotfig
|
|
47
|
+
pip install .
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## 开发版安装
|
|
51
|
+
|
|
52
|
+
当你希望参与 `plotfig` 的开发,或想在使用过程中尝试尚未正式发布的新功能、最新修复的 bug 时,可以选择以开发模式安装。
|
|
53
|
+
该方式会以“可编辑模式(editable mode)”将项目安装到环境中,使你对本地源码的修改可以立即生效,非常适合用于开发、调试和贡献代码。
|
|
54
|
+
|
|
55
|
+
建议先 Fork 仓库,然后克隆你自己的 Fork:
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
git clone -b dev https://github.com/<your-username>/plotfig.git
|
|
59
|
+
cd plotfig
|
|
60
|
+
pip install -e .
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
## 依赖要求
|
|
64
|
+
|
|
65
|
+
`plotfig` 依赖若干核心库,这些依赖会在安装过程中自动处理,但建议用户事先了解其版本要求以避免兼容性问题。
|
|
66
|
+
|
|
67
|
+
- [matplotlib](https://matplotlib.org/) ≥ 3.10.1
|
|
68
|
+
- [mne-connectivity](https://mne.tools/mne-connectivity/stable/index.html) ≥ 0.7.0
|
|
69
|
+
- [nibabel](https://nipy.org/nibabel/) ≥ 5.3.2
|
|
70
|
+
- [numpy](https://numpy.org/) ≥ 2.2.4
|
|
71
|
+
- [pandas](https://pandas.pydata.org/) ≥ 2.2.3
|
|
72
|
+
- [plotly](https://plotly.com/) ≥ 6.0.1
|
|
73
|
+
- [scipy](https://scipy.org/) ≥ 1.15.2
|
|
74
|
+
- [surfplot](https://surfplot.readthedocs.io/en/latest/index.html) ≥ 0.2.0
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Label,ROIs_name
|
|
2
|
+
1,lh_SFG.r
|
|
3
|
+
2,lh_SFG.ri
|
|
4
|
+
3,lh_SFG.ci
|
|
5
|
+
4,lh_SFG.c
|
|
6
|
+
5,lh_SFG.lc
|
|
7
|
+
6,lh_SFG.mc
|
|
8
|
+
7,lh_MFG.r
|
|
9
|
+
8,lh_MFG.ri
|
|
10
|
+
9,lh_MFG.i
|
|
11
|
+
10,lh_MFG.di
|
|
12
|
+
11,lh_MFG.vi
|
|
13
|
+
12,lh_MFG.dc
|
|
14
|
+
13,lh_MFG.vc
|
|
15
|
+
14,lh_IFG.r
|
|
16
|
+
15,lh_IFG.ri
|
|
17
|
+
16,lh_IFG.ci
|
|
18
|
+
17,lh_IFG.dc
|
|
19
|
+
18,lh_IFG.vc
|
|
20
|
+
19,lh_IFG.c
|
|
21
|
+
20,lh_OrG.m
|
|
22
|
+
21,lh_OrG.r
|
|
23
|
+
22,lh_OrG.i
|
|
24
|
+
23,lh_OrG.c
|
|
25
|
+
24,lh_OrG.rl
|
|
26
|
+
25,lh_OrG.cl
|
|
27
|
+
26,lh_PrG.rd
|
|
28
|
+
27,lh_PrG.cd
|
|
29
|
+
28,lh_PrG.ri
|
|
30
|
+
29,lh_PrG.ci
|
|
31
|
+
30,lh_PrG.i
|
|
32
|
+
31,lh_PrG.vi
|
|
33
|
+
32,lh_PrG.v
|
|
34
|
+
33,lh_PCL.r
|
|
35
|
+
34,lh_PCL.c
|
|
36
|
+
35,lh_STG.r
|
|
37
|
+
36,lh_STG.ri
|
|
38
|
+
37,lh_STG.ci
|
|
39
|
+
38,lh_STG.c
|
|
40
|
+
39,lh_STG.dc
|
|
41
|
+
40,lh_STG.vc
|
|
42
|
+
41,lh_MTG.r
|
|
43
|
+
42,lh_MTG.i
|
|
44
|
+
43,lh_MTG.c
|
|
45
|
+
44,lh_MTG.cv
|
|
46
|
+
45,lh_ITG.r
|
|
47
|
+
46,lh_ITG.dr
|
|
48
|
+
47,lh_ITG.vr
|
|
49
|
+
48,lh_ITG.i
|
|
50
|
+
49,lh_ITG.dc
|
|
51
|
+
50,lh_ITG.vc
|
|
52
|
+
51,lh_ITG.c
|
|
53
|
+
52,lh_FuG.r
|
|
54
|
+
53,lh_FuG.ri
|
|
55
|
+
54,lh_FuG.ci
|
|
56
|
+
55,lh_FuG.m
|
|
57
|
+
56,lh_FuG.lc
|
|
58
|
+
57,lh_FuG.mc
|
|
59
|
+
58,lh_PhG.r
|
|
60
|
+
59,lh_PhG.mi
|
|
61
|
+
60,lh_PhG.li
|
|
62
|
+
61,lh_PhG.mc
|
|
63
|
+
62,lh_PhG.lc
|
|
64
|
+
63,lh_SPL.dr
|
|
65
|
+
64,lh_SPL.vr
|
|
66
|
+
65,lh_SPL.i
|
|
67
|
+
66,lh_SPL.ci
|
|
68
|
+
67,lh_SPL.c
|
|
69
|
+
68,lh_IPL.r
|
|
70
|
+
69,lh_IPL.ri
|
|
71
|
+
70,lh_IPL.v
|
|
72
|
+
71,lh_IPL.ci
|
|
73
|
+
72,lh_IPL.c
|
|
74
|
+
73,lh_PrL.r
|
|
75
|
+
74,lh_PrL.c
|
|
76
|
+
75,lh_Pcun.d
|
|
77
|
+
76,lh_Pcun.di
|
|
78
|
+
77,lh_Pcun.vi
|
|
79
|
+
78,lh_Pcun.v
|
|
80
|
+
79,lh_PoG.d
|
|
81
|
+
80,lh_PoG.i
|
|
82
|
+
81,lh_PoG.v
|
|
83
|
+
82,lh_INS.dr
|
|
84
|
+
83,lh_INS.ir
|
|
85
|
+
84,lh_INS.vr
|
|
86
|
+
85,lh_INS.rd
|
|
87
|
+
86,lh_INS.cd
|
|
88
|
+
87,lh_INS.i
|
|
89
|
+
88,lh_INS.v
|
|
90
|
+
89,lh_CG.r
|
|
91
|
+
90,lh_CG.i
|
|
92
|
+
91,lh_CG.dc
|
|
93
|
+
92,lh_CG.vc
|
|
94
|
+
93,lh_MVOcC.rd
|
|
95
|
+
94,lh_MVOcC.cd
|
|
96
|
+
95,lh_MVOcC.rv
|
|
97
|
+
96,lh_MVOcC.cv
|
|
98
|
+
97,lh_LOcC.d
|
|
99
|
+
98,lh_LOcC.i
|
|
100
|
+
99,lh_LOcC.rv
|
|
101
|
+
100,lh_LOcC.cv
|
|
102
|
+
101,rh_SFG.r
|
|
103
|
+
102,rh_SFG.ri
|
|
104
|
+
103,rh_SFG.ci
|
|
105
|
+
104,rh_SFG.c
|
|
106
|
+
105,rh_SFG.lc
|
|
107
|
+
106,rh_SFG.mc
|
|
108
|
+
107,rh_MFG.r
|
|
109
|
+
108,rh_MFG.ri
|
|
110
|
+
109,rh_MFG.i
|
|
111
|
+
110,rh_MFG.di
|
|
112
|
+
111,rh_MFG.vi
|
|
113
|
+
112,rh_MFG.dc
|
|
114
|
+
113,rh_MFG.vc
|
|
115
|
+
114,rh_IFG.r
|
|
116
|
+
115,rh_IFG.ri
|
|
117
|
+
116,rh_IFG.ci
|
|
118
|
+
117,rh_IFG.dc
|
|
119
|
+
118,rh_IFG.vc
|
|
120
|
+
119,rh_IFG.c
|
|
121
|
+
120,rh_OrG.m
|
|
122
|
+
121,rh_OrG.r
|
|
123
|
+
122,rh_OrG.i
|
|
124
|
+
123,rh_OrG.c
|
|
125
|
+
124,rh_OrG.rl
|
|
126
|
+
125,rh_OrG.cl
|
|
127
|
+
126,rh_PrG.rd
|
|
128
|
+
127,rh_PrG.cd
|
|
129
|
+
128,rh_PrG.ri
|
|
130
|
+
129,rh_PrG.ci
|
|
131
|
+
130,rh_PrG.i
|
|
132
|
+
131,rh_PrG.vi
|
|
133
|
+
132,rh_PrG.v
|
|
134
|
+
133,rh_PCL.r
|
|
135
|
+
134,rh_PCL.c
|
|
136
|
+
135,rh_STG.r
|
|
137
|
+
136,rh_STG.ri
|
|
138
|
+
137,rh_STG.ci
|
|
139
|
+
138,rh_STG.c
|
|
140
|
+
139,rh_STG.dc
|
|
141
|
+
140,rh_STG.vc
|
|
142
|
+
141,rh_MTG.r
|
|
143
|
+
142,rh_MTG.i
|
|
144
|
+
143,rh_MTG.c
|
|
145
|
+
144,rh_MTG.cv
|
|
146
|
+
145,rh_ITG.r
|
|
147
|
+
146,rh_ITG.dr
|
|
148
|
+
147,rh_ITG.vr
|
|
149
|
+
148,rh_ITG.i
|
|
150
|
+
149,rh_ITG.dc
|
|
151
|
+
150,rh_ITG.vc
|
|
152
|
+
151,rh_ITG.c
|
|
153
|
+
152,rh_FuG.r
|
|
154
|
+
153,rh_FuG.ri
|
|
155
|
+
154,rh_FuG.ci
|
|
156
|
+
155,rh_FuG.m
|
|
157
|
+
156,rh_FuG.lc
|
|
158
|
+
157,rh_FuG.mc
|
|
159
|
+
158,rh_PhG.r
|
|
160
|
+
159,rh_PhG.mi
|
|
161
|
+
160,rh_PhG.li
|
|
162
|
+
161,rh_PhG.mc
|
|
163
|
+
162,rh_PhG.lc
|
|
164
|
+
163,rh_SPL.dr
|
|
165
|
+
164,rh_SPL.vr
|
|
166
|
+
165,rh_SPL.i
|
|
167
|
+
166,rh_SPL.ci
|
|
168
|
+
167,rh_SPL.c
|
|
169
|
+
168,rh_IPL.r
|
|
170
|
+
169,rh_IPL.ri
|
|
171
|
+
170,rh_IPL.v
|
|
172
|
+
171,rh_IPL.ci
|
|
173
|
+
172,rh_IPL.c
|
|
174
|
+
173,rh_PrL.r
|
|
175
|
+
174,rh_PrL.c
|
|
176
|
+
175,rh_Pcun.d
|
|
177
|
+
176,rh_Pcun.di
|
|
178
|
+
177,rh_Pcun.vi
|
|
179
|
+
178,rh_Pcun.v
|
|
180
|
+
179,rh_PoG.d
|
|
181
|
+
180,rh_PoG.i
|
|
182
|
+
181,rh_PoG.v
|
|
183
|
+
182,rh_INS.dr
|
|
184
|
+
183,rh_INS.ir
|
|
185
|
+
184,rh_INS.vr
|
|
186
|
+
185,rh_INS.rd
|
|
187
|
+
186,rh_INS.cd
|
|
188
|
+
187,rh_INS.i
|
|
189
|
+
188,rh_INS.v
|
|
190
|
+
189,rh_CG.r
|
|
191
|
+
190,rh_CG.i
|
|
192
|
+
191,rh_CG.dc
|
|
193
|
+
192,rh_CG.vc
|
|
194
|
+
193,rh_MVOcC.rd
|
|
195
|
+
194,rh_MVOcC.cd
|
|
196
|
+
195,rh_MVOcC.rv
|
|
197
|
+
196,rh_MVOcC.cv
|
|
198
|
+
197,rh_LOcC.d
|
|
199
|
+
198,rh_LOcC.i
|
|
200
|
+
199,rh_LOcC.rv
|
|
201
|
+
200,rh_LOcC.cv
|
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
Label,ROIs_name
|
|
2
|
+
1,lh_A8m
|
|
3
|
+
2,lh_A8dl
|
|
4
|
+
3,lh_A9l
|
|
5
|
+
4,lh_A6dl
|
|
6
|
+
5,lh_A6m
|
|
7
|
+
6,lh_A9m
|
|
8
|
+
7,lh_A10m
|
|
9
|
+
8,lh_A9/46d
|
|
10
|
+
9,lh_IFJ
|
|
11
|
+
10,lh_A46
|
|
12
|
+
11,lh_A9/46v
|
|
13
|
+
12,lh_A8vl
|
|
14
|
+
13,lh_A6vl
|
|
15
|
+
14,lh_A10l
|
|
16
|
+
15,lh_A44d
|
|
17
|
+
16,lh_IFS
|
|
18
|
+
17,lh_A45c
|
|
19
|
+
18,lh_A45r
|
|
20
|
+
19,lh_A44op
|
|
21
|
+
20,lh_A44v
|
|
22
|
+
21,lh_A14m
|
|
23
|
+
22,lh_A12/47o
|
|
24
|
+
23,lh_A11l
|
|
25
|
+
24,lh_A11m
|
|
26
|
+
25,lh_A13
|
|
27
|
+
26,lh_A12/47l
|
|
28
|
+
27,lh_A4hf
|
|
29
|
+
28,lh_A6cdl
|
|
30
|
+
29,lh_A4ul
|
|
31
|
+
30,lh_A4t
|
|
32
|
+
31,lh_A4tl
|
|
33
|
+
32,lh_A6cvl
|
|
34
|
+
33,lh_A1/2/3ll
|
|
35
|
+
34,lh_A4ll
|
|
36
|
+
35,lh_A38m
|
|
37
|
+
36,lh_A41/42
|
|
38
|
+
37,lh_TE1.0/TE1.2
|
|
39
|
+
38,lh_A22c
|
|
40
|
+
39,lh_A38l
|
|
41
|
+
40,lh_A22r
|
|
42
|
+
41,lh_A21c
|
|
43
|
+
42,lh_A21r
|
|
44
|
+
43,lh_A37dl
|
|
45
|
+
44,lh_aSTS
|
|
46
|
+
45,lh_A20iv
|
|
47
|
+
46,lh_A37elv
|
|
48
|
+
47,lh_A20r
|
|
49
|
+
48,lh_A20il
|
|
50
|
+
49,lh_A37vl
|
|
51
|
+
50,lh_A20cl
|
|
52
|
+
51,lh_A20cv
|
|
53
|
+
52,lh_A20rv
|
|
54
|
+
53,lh_A37mv
|
|
55
|
+
54,lh_A37lv
|
|
56
|
+
55,lh_A35/36r
|
|
57
|
+
56,lh_A35/36c
|
|
58
|
+
57,lh_TL
|
|
59
|
+
58,lh_A28/34
|
|
60
|
+
59,lh_TI
|
|
61
|
+
60,lh_TH
|
|
62
|
+
61,lh_rpSTS
|
|
63
|
+
62,lh_cpSTS
|
|
64
|
+
63,lh_A7r
|
|
65
|
+
64,lh_A7c
|
|
66
|
+
65,lh_A5l
|
|
67
|
+
66,lh_A7pc
|
|
68
|
+
67,lh_A7ip
|
|
69
|
+
68,lh_A39c
|
|
70
|
+
69,lh_A39rd
|
|
71
|
+
70,lh_A40rd
|
|
72
|
+
71,lh_A40c
|
|
73
|
+
72,lh_A39rv
|
|
74
|
+
73,lh_A40rv
|
|
75
|
+
74,lh_A7m
|
|
76
|
+
75,lh_A5m
|
|
77
|
+
76,lh_dmPOS
|
|
78
|
+
77,lh_A31
|
|
79
|
+
78,lh_A1/2/3ulhf
|
|
80
|
+
79,lh_A1/2/3tonIa
|
|
81
|
+
80,lh_A2
|
|
82
|
+
81,lh_A1/2/3tru
|
|
83
|
+
82,lh_G
|
|
84
|
+
83,lh_vIa
|
|
85
|
+
84,lh_dIa
|
|
86
|
+
85,lh_vId/vIg
|
|
87
|
+
86,lh_dIg
|
|
88
|
+
87,lh_dId
|
|
89
|
+
88,lh_A23d
|
|
90
|
+
89,lh_A24rv
|
|
91
|
+
90,lh_A32p
|
|
92
|
+
91,lh_A23v
|
|
93
|
+
92,lh_A24cd
|
|
94
|
+
93,lh_A23c
|
|
95
|
+
94,lh_A32sg
|
|
96
|
+
95,lh_cLinG
|
|
97
|
+
96,lh_rCunG
|
|
98
|
+
97,lh_cCunG
|
|
99
|
+
98,lh_rLinG
|
|
100
|
+
99,lh_vmPOS
|
|
101
|
+
100,lh_mOccG
|
|
102
|
+
101,lh_V5/MT+
|
|
103
|
+
102,lh_OPC
|
|
104
|
+
103,lh_iOccG
|
|
105
|
+
104,lh_msOccG
|
|
106
|
+
105,lh_lsOccG
|
|
107
|
+
106,rh_A8m
|
|
108
|
+
107,rh_A8dl
|
|
109
|
+
108,rh_A9l
|
|
110
|
+
109,rh_A6dl
|
|
111
|
+
110,rh_A6m
|
|
112
|
+
111,rh_A9m
|
|
113
|
+
112,rh_A10m
|
|
114
|
+
113,rh_A9/46d
|
|
115
|
+
114,rh_IFJ
|
|
116
|
+
115,rh_A46
|
|
117
|
+
116,rh_A9/46v
|
|
118
|
+
117,rh_A8vl
|
|
119
|
+
118,rh_A6vl
|
|
120
|
+
119,rh_A10l
|
|
121
|
+
120,rh_A44d
|
|
122
|
+
121,rh_IFS
|
|
123
|
+
122,rh_A45c
|
|
124
|
+
123,rh_A45r
|
|
125
|
+
124,rh_A44op
|
|
126
|
+
125,rh_A44v
|
|
127
|
+
126,rh_A14m
|
|
128
|
+
127,rh_A12/47o
|
|
129
|
+
128,rh_A11l
|
|
130
|
+
129,rh_A11m
|
|
131
|
+
130,rh_A13
|
|
132
|
+
131,rh_A12/47l
|
|
133
|
+
132,rh_A4hf
|
|
134
|
+
133,rh_A6cdl
|
|
135
|
+
134,rh_A4ul
|
|
136
|
+
135,rh_A4t
|
|
137
|
+
136,rh_A4tl
|
|
138
|
+
137,rh_A6cvl
|
|
139
|
+
138,rh_A1/2/3ll
|
|
140
|
+
139,rh_A4ll
|
|
141
|
+
140,rh_A38m
|
|
142
|
+
141,rh_A41/42
|
|
143
|
+
142,rh_TE1.0/TE1.2
|
|
144
|
+
143,rh_A22c
|
|
145
|
+
144,rh_A38l
|
|
146
|
+
145,rh_A22r
|
|
147
|
+
146,rh_A21c
|
|
148
|
+
147,rh_A21r
|
|
149
|
+
148,rh_A37dl
|
|
150
|
+
149,rh_aSTS
|
|
151
|
+
150,rh_A20iv
|
|
152
|
+
151,rh_A37elv
|
|
153
|
+
152,rh_A20r
|
|
154
|
+
153,rh_A20il
|
|
155
|
+
154,rh_A37vl
|
|
156
|
+
155,rh_A20cl
|
|
157
|
+
156,rh_A20cv
|
|
158
|
+
157,rh_A20rv
|
|
159
|
+
158,rh_A37mv
|
|
160
|
+
159,rh_A37lv
|
|
161
|
+
160,rh_A35/36r
|
|
162
|
+
161,rh_A35/36c
|
|
163
|
+
162,rh_TL
|
|
164
|
+
163,rh_A28/34
|
|
165
|
+
164,rh_TI
|
|
166
|
+
165,rh_TH
|
|
167
|
+
166,rh_rpSTS
|
|
168
|
+
167,rh_cpSTS
|
|
169
|
+
168,rh_A7r
|
|
170
|
+
169,rh_A7c
|
|
171
|
+
170,rh_A5l
|
|
172
|
+
171,rh_A7pc
|
|
173
|
+
172,rh_A7ip
|
|
174
|
+
173,rh_A39c
|
|
175
|
+
174,rh_A39rd
|
|
176
|
+
175,rh_A40rd
|
|
177
|
+
176,rh_A40c
|
|
178
|
+
177,rh_A39rv
|
|
179
|
+
178,rh_A40rv
|
|
180
|
+
179,rh_A7m
|
|
181
|
+
180,rh_A5m
|
|
182
|
+
181,rh_dmPOS
|
|
183
|
+
182,rh_A31
|
|
184
|
+
183,rh_A1/2/3ulhf
|
|
185
|
+
184,rh_A1/2/3tonIa
|
|
186
|
+
185,rh_A2
|
|
187
|
+
186,rh_A1/2/3tru
|
|
188
|
+
187,rh_G
|
|
189
|
+
188,rh_vIa
|
|
190
|
+
189,rh_dIa
|
|
191
|
+
190,rh_vId/vIg
|
|
192
|
+
191,rh_dIg
|
|
193
|
+
192,rh_dId
|
|
194
|
+
193,rh_A23d
|
|
195
|
+
194,rh_A24rv
|
|
196
|
+
195,rh_A32p
|
|
197
|
+
196,rh_A23v
|
|
198
|
+
197,rh_A24cd
|
|
199
|
+
198,rh_A23c
|
|
200
|
+
199,rh_A32sg
|
|
201
|
+
200,rh_cLinG
|
|
202
|
+
201,rh_rCunG
|
|
203
|
+
202,rh_cCunG
|
|
204
|
+
203,rh_rLinG
|
|
205
|
+
204,rh_vmPOS
|
|
206
|
+
205,rh_mOccG
|
|
207
|
+
206,rh_V5/MT+
|
|
208
|
+
207,rh_OPC
|
|
209
|
+
208,rh_iOccG
|
|
210
|
+
209,rh_msOccG
|
|
211
|
+
210,rh_lsOccG
|