help > How to load the preprocessed data of ABIDE I data (*.1D file) into matlab
Showing 1-8 of 8 posts
Jul 4, 2020 08:07 PM | Zhongxing Zhou - Tulane University
How to load the preprocessed data of ABIDE I data (*.1D file) into matlab
I have download the prepossessed ABIDE I data. I can import the
time series data (*.1D) by matlab. But I try to use the command
"load" to load the time series, it does not work. Details of using
"load" to load the prepossessed ABIDE I data can be found as
follows
load('G:/ABIDE1_File/Outputs/cpac/filt_global/rois_cc400/Caltech_0051456_rois_cc400.1D');
??? Error using ==> load
Unknown text on line number 1 of ASCII file G:/ABIDE1_File/Outputs/cpac/filt_global/rois_cc400/Caltech_0051456_rois_cc400.1D
"#1".
Would you please give me some suggestions? Thank you
load('G:/ABIDE1_File/Outputs/cpac/filt_global/rois_cc400/Caltech_0051456_rois_cc400.1D');
??? Error using ==> load
Unknown text on line number 1 of ASCII file G:/ABIDE1_File/Outputs/cpac/filt_global/rois_cc400/Caltech_0051456_rois_cc400.1D
"#1".
Would you please give me some suggestions? Thank you
Jul 6, 2020 09:07 AM | Maarten Mennes
RE: How to load the preprocessed data of ABIDE I data (*.1D file) into matlab
the .1D files are simple text files. I don't work with matlab, but
a quick search suggests you could use 'dlmread'
Jul 7, 2020 04:07 PM | Zhongxing Zhou - Tulane University
RE: How to load the preprocessed data of ABIDE I data (*.1D file) into matlab
Thank you for your answer. But dlmread does not work.
Jul 8, 2020 08:07 PM | Zhongxing Zhou - Tulane University
RE: How to load the preprocessed data of ABIDE I data (*.1D file) into matlab
I opened the file with the notepad software of windows.
I deleted the head of the file (KKI_0050822_rois_ho.1D) as follows. Then I can use "dlmread" to read the file.
#10 #11 #12 #13 #17 #18 #26 #49 #50 #51 #52 #53 #54 #58 #101 #102 #201 #202 #301 #302 #401 #402 #501 #502 #601 #602 #701 #702 #801 #802 #901 #902 #1001 #1002 #1101 #1102 #1201 #1202 #1301 #1302 #1401 #1402 #1501 #1502 #1601 #1602 #1701 #1702 #1801 #1802 #1901 #1902 #2001 #2002 #2101 #2102 #2201 #2202 #2301 #2302 #2401 #2402 #2501 #2502 #2601 #2602 #2701 #2702 #2801 #2802 #2901 #2902 #3001 #3002 #3101 #3102 #3201 #3202 #3301 #3302 #3401 #3402 #3455 #3501 #3502 #3601 #3602 #3701 #3702 #3801 #3802 #3901 #3902 #4001 #4002 #4101 #4102 #4201 #4202 #4301 #4302 #4401 #4402 #4501 #4502 #4601 #4602 #4701 #4702 #4801 #4802
But what are the meanings of above #numbers ?
I deleted the head of the file (KKI_0050822_rois_ho.1D) as follows. Then I can use "dlmread" to read the file.
#10 #11 #12 #13 #17 #18 #26 #49 #50 #51 #52 #53 #54 #58 #101 #102 #201 #202 #301 #302 #401 #402 #501 #502 #601 #602 #701 #702 #801 #802 #901 #902 #1001 #1002 #1101 #1102 #1201 #1202 #1301 #1302 #1401 #1402 #1501 #1502 #1601 #1602 #1701 #1702 #1801 #1802 #1901 #1902 #2001 #2002 #2101 #2102 #2201 #2202 #2301 #2302 #2401 #2402 #2501 #2502 #2601 #2602 #2701 #2702 #2801 #2802 #2901 #2902 #3001 #3002 #3101 #3102 #3201 #3202 #3301 #3302 #3401 #3402 #3455 #3501 #3502 #3601 #3602 #3701 #3702 #3801 #3802 #3901 #3902 #4001 #4002 #4101 #4102 #4201 #4202 #4301 #4302 #4401 #4402 #4501 #4502 #4601 #4602 #4701 #4702 #4801 #4802
But what are the meanings of above #numbers ?
Jul 15, 2020 03:07 PM | Zhongxing Zhou - Tulane University
RE: How to load the preprocessed data of ABIDE I data (*.1D file) into matlab
I have solve the problem about how to load the ABIDE I data. I can
use the Matlab function of "importdata". Thank you.
Apr 6, 2022 01:04 AM | aoumria chelef - Istanbul university
RE: How to load the preprocessed data of ABIDE I data (*.1D file) into matlab
Hi can you please give the matlab code which you use to import and
read the ABIDE dataset. I m working on the data but i could not
read the data so if you can help me i will be thankful.
Apr 18, 2022 09:04 AM | rai
RE: How to load the preprocessed data of ABIDE I data (*.1D file) into matlab
Originally posted by aoumria chelef:
Hi can you please give the matlab code which you
use to import and read the ABIDE dataset. I m working on the data
but i could not read the data so if you can help me i will be
thankful.
Aug 22, 2022 11:08 AM | caio martins
RE: How to load the preprocessed data of ABIDE I data (*.1D file) into matlab
For anyone who still needs help with the ABIDE dataset:
You can get information on the preprocessed dataset from here: http://preprocessed-connectomes-project.org/abide/index.html
To download the data, you can download the python script from here https://github.com/preprocessed-connectomes-project/abide/blob/master/download_abide_preproc.py, you can read on how to use the script here https://raw.githubusercontent.com/preprocessed-connectomes-project/abide/master/download_abide_preproc_guide.txt.
Once the data is downloaded (assuming you downloaded the time series), you can load the data using MATLAB's importdata command (e.g.importdata('Caltech_0051456_rois_aal.1D') - Caltech_0051456_rois_aal.1D is an actual file name).
you will notice that the headers are labelled - you can get information on the meaning of the labels and further prepoc settings here http://preprocessed-connectomes-project.org/abide/Pipelines.html, if you scroll down to "Regions of Interest", you can download the labels for the atlas used and get the ROI name for the given label.
You can get information on the preprocessed dataset from here: http://preprocessed-connectomes-project.org/abide/index.html
To download the data, you can download the python script from here https://github.com/preprocessed-connectomes-project/abide/blob/master/download_abide_preproc.py, you can read on how to use the script here https://raw.githubusercontent.com/preprocessed-connectomes-project/abide/master/download_abide_preproc_guide.txt.
Once the data is downloaded (assuming you downloaded the time series), you can load the data using MATLAB's importdata command (e.g.importdata('Caltech_0051456_rois_aal.1D') - Caltech_0051456_rois_aal.1D is an actual file name).
you will notice that the headers are labelled - you can get information on the meaning of the labels and further prepoc settings here http://preprocessed-connectomes-project.org/abide/Pipelines.html, if you scroll down to "Regions of Interest", you can download the labels for the atlas used and get the ROI name for the given label.