nirs.modules.AddDemographics

Untitled

nirs.modules.AddDemographics

This module can add demographic information from a table
Example Usage:
for i = 1:10
raw(i) = nirs.testing.simData;
end
 
% Adding demographic manually
% Let’s assume that the SubjectID is in the correct order
for i = 1:10
raw(i).demographics(‘Subject’) = [‘S’ num2str(i)];
end
 
%Let’s make up the table contain SubjectID, Group, AgeMonths, ADHD
for i = 1:10; Subject{i,1} = [‘S’ num2str(i)]; end
for i = 1:5; Group{i,1} = [‘S1’]; end
for i = 6:10; Group{i,1} = [‘S2’]; end
AgeMonths = [60; 65; 68; 60; 69; 72; 61; 68; 70; 66];
ADHD = [2; 6; 3; 9; 5; 7; 3; 7; 5; 4];
demo = table(Subject, Group, AgeMonths, ADHD);
 
job=nirs.modules.AddDemographics;
job.allowMissing = true;
job.demoTable=demo;
job.varToMatch=‘Subject’;
raw=job.run(raw);
 
nirs.createDemographicsTable(raw)
ans = 10×4 table
 SubjectGroupAgeMonthsADHD
1‘S1’‘S1’602
2‘S2’‘S1’656
3‘S3’‘S1’683
4‘S4’‘S1’609
5‘S5’‘S1’695
6‘S6’‘S2’727
7‘S7’‘S2’613
8‘S8’‘S2’687
9‘S9’‘S2’705
10‘S10’‘S2’664
 
We can also get that demo table from the Excel file by using this function
demo = readtable(‘YourDemographicInfo.xlsx’);
Error using readtable
Unable to find or open ‘YourDemographicInfo.xlsx’. Check the path and filename or file permissions.