forked from MICA-MNI/ENIGMA
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7dfdb32
commit 8fd58fe
Showing
6 changed files
with
14 additions
and
15 deletions.
There are no files selected for viewing
Binary file not shown.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Sphinx build info version 1 | ||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | ||
config: 386f2f8afc4ded471a642ea7b99ad1dc | ||
config: e5413d75f71180f61a56ae48c1bd5aa2 | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
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 |
---|---|---|
@@ -1,21 +1,20 @@ | ||
function [cov, metr1_SubVol, metr2_CortThick, metr3_CortSurf] = load_example_data() | ||
% | ||
% Usage: [cov, metr1_SubVol, metr2_CortThick, metr3_CortSurf] = load_example_data() | ||
% Usage: | ||
% [cov, metr1_SubVol, metr2_CortThick, metr3_CortSurf] = load_example_data() | ||
% | ||
% Simple script to load our example data (processed according to ENIGMA | ||
% protocols!) | ||
% Description: | ||
% Loads the ENIGMA example dataset (from one site - MICA-MNI Montreal; | ||
% author: @saratheriver) | ||
% | ||
% Outputs: | ||
% cov = contains information on covariates (20 x 9 table) | ||
% metr1 = contains information on subcortical volume (20 x 18 table) | ||
% metr2 - contains information on cortical thickness (20 x 74 table) | ||
% metr3 = contains information on surface area (20 x 74 table) | ||
% Outputs: | ||
% cov (table) - Contains information on covariates | ||
% metr1 (table) - Contains information on subcortical volume | ||
% metr2 (table) - Contains information on cortical thickness | ||
% metr3 (table) - Contains information on surface area | ||
% | ||
% | ||
% Sara Lariviere | [email protected] | ||
% | ||
% Last modifications: | ||
% SL | still a hot and humid day in August 2020 (whatta summer!) | ||
|
||
cov = readtable('cov.csv'); | ||
metr1_SubVol = readtable('metr1_SubVol.csv'); | ||
|