How do i extract data from each group separately and plot
3 次查看(过去 30 天)
显示 更早的评论
U have attached the excel spreadsheet to this document and i want to extract the data from the Time course of logmIKI f(mean and s.e.m.) for each group separately, overlaping in the same figure. PLEASEEE HELP!
Thank you in advance
0 个评论
采纳的回答
Walter Roberson
2022-4-15
filename = 'https://www.mathworks.com/matlabcentral/answers/uploaded_files/965825/advancedstats2.csv';
t = readtable(filename);
t.Properties.VariableNames
G = findgroups(t.group);
output = splitapply(@(subj, group, trial, logmIKI) {table(subj, group, trial, logmIKI)}, t, G)
output{1}(1:10,:)
5 个评论
Walter Roberson
2022-4-16
stackedplot() does not offer any way to plot with different sizes of variables.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!