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)
We can also get that demo table from the Excel file by using this function
demo = readtable(‘YourDemographicInfo.xlsx’);