- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在相关图中绘制一组配对数据。这是一项通过两种田间处理和 8 个输入水平来判断植物 react 的研究。我想显示数据,用 8 种不同的颜色表示 8 个输入级别,用 3 个不同的形状表示 3 个不同年份的研究。我正在使用 gscatter。
问题是,当我指定两个变量作为分组依据时,它不知道颜色与一个变量相关而形状与另一个变量相关,而且我只想在输入变化时改变颜色,并且只希望形状与当年份改变时改变。最终结果是,对于每个独特的分组(其中 24 个),它通过每个独特的组契约(Contract)时通过颜色和形状前进。
这是说明输出的两个图表。第一张图显示了所有刚刚按输入分组和着色的数据。它正确地为每个输入级别分配了唯一的颜色。 3 年每年 2 分,每种颜色共计 6 分。
现在我只想改变第 2 年和第 3 年的形状并保持颜色相同,但就是我得到的。您可以在图例中看到它如何同时循环 3 次颜色和 8 次形状。所以不同的颜色被分配到相同的输入级别。我尝试以不同的方式对数据进行排序,但得到的结果完全相同。
我还尝试手动调整每个数据点的颜色,但对象中的顺序必须与图例中列出的顺序不同,因为我得到了奇怪的结果。有些点已正确更改,但其他点未正确更改。
一定有更好的方法来做到这一点。我愿意接受所有建议,无论是让这个方法起作用,还是使用不同的函数。
这是包含较小数据子集的代码:
clear
Treatments = table([{'T1'};{'T2'};{'T1'};{'T2'};{'T1'};{'T2'};{'T1'};{'T2'};{'T1'};{'T2'};{'T1'};{'T2'};{'T1'};{'T2'};{'T1'};{'T2'};{'T1'};{'T2'}]);
Data = [2016 2016 2017 2017 2018 2018 2016 2016 2017 2017 2018 2018 2016 2016 2017 2017 2018 2018;...
0 0 0 0 0 0 1 1 1 1 1 1 2 2 2 2 2 2;...
4704.5 4059.5 10891 11440.5 4083.5 2876 11459.66667 11752 11566 12036 11323.5 11118.5 10296.5 10234 13074.5 14166 9062 9669]';
% split by treatment
t1Response = Data(strcmp(Treatments.Var1,'T1'),3);
t2Response = Data(strcmp(Treatments.Var1,'T2'),3);
Inputs = Data(strcmp(Treatments.Var1,'T2'),2); % treatment doesn't matter, just need one set
Years = Data(strcmp(Treatments.Var1,'T2'),1); % treatment doesn't matter
% all points one shape, group colors just by inputs
figure;
colors = lines(8);
colors(8,1)=0.5;
g = gscatter(t1Response,t2Response,Inputs,colors([7,2,3],:),'.',20,'on');
% group by input and year
figure;
g2 = gscatter(t1Response,t2Response,{Inputs,Years},colors([7,2,3],:),'.s^',20,'on'); g2(1).MarkerFaceColor = colors(7,:);
% g2(1).MarkerFaceColor = colors(7,:);
% g2(2).MarkerFaceColor = colors(7,:);
% g2(3).MarkerFaceColor = colors(7,:);
% g2(4).MarkerFaceColor = colors(2,:);
% g2(5).MarkerFaceColor = colors(2,:);
% g2(6).MarkerFaceColor = colors(2,:);
% g2(7).MarkerFaceColor = colors(3,:);
% g2(8).MarkerFaceColor = colors(3,:);
% g2(9).MarkerFaceColor = colors(3,:);
最佳答案
您可能不得不放弃 gscatter
并自己完成此操作。来自documentation多个分组变量上的项目:
Alternatively, g can be a cell array containing several grouping variables (such as {g1 g2 g3}), in which case observations are in the same group if they have common values of all grouping variables.
即它无法处理具有独立颜色和形状的独立变量。
您可以使用 fingroups
和一些索引来构建组并循环多年以进行绘图。这是一个强大的解决方案,可以处理诸如拥有比颜色/标记更多的组的情况:
% Define colours and markers
colors = lines(8); colors(8,1)=0.5;
markers = {'x','d','o','+','*','s','p''h'};
% Create colour matrix
[gInputs, uInputs] = findgroups(Inputs);
if max(gInputs) > size(colors,1)
warning( 'More inputs than possible colors, colors will be re-used' );
end
colors = colors(mod(gInputs-1,size(colors,1))+1,:); % mod to handle out of range case
% Create marker array
[gYears, uYears] = findgroups(Years);
if max(gYears) > numel(markers)
warning( 'More years than possible markers, markers will be re-used' );
end
markers = markers(mod(gYears-1,numel(markers))+1); % mod to handle out of range case
figure(); hold on
for iYr = 1:max(gYears)
idx = (iYr == gYears);
scatter(t1Response(idx), t2Response(idx), 20, colors(idx,:), 'Marker', markers{iYr}, 'displayname', num2str(uYears(iYr)), 'LineWidth', 2 );
end
hold off
legend('show')
如果您希望图例反射(reflect)年份和输入的组合,那么您将不得不使用双循环
% Setup as above...
figure(); hold on
for iYr = 1:max(gYears)
for iIn = 1:max(gInputs)
idx = (iYr == gYears) & (iIn == gInputs);
scatter(t1Response(idx), t2Response(idx), 20, colors(idx,:), 'Marker', markers{iYr}, 'displayname', sprintf('%d: %d',uYears(iYr),uInputs(iIn)), 'LineWidth', 2 );
end
end
hold off
legend('show')
您可以使用 line
而不是 scatter
使最后一个示例更快,但语法略有不同,因此我保留它以避免复杂化。
要获得更简洁的图例,您必须使用您想要的格式伪造一些行。我对代码进行了一些重组,以展示如何做到这一点:
% Define colours and markers
colors = lines(8); colors(8,1)=0.5;
markers = {'x','d','o','+','*','s','p''h'};
% Create colour matrix
[gInputs, uInputs] = findgroups(Inputs);
if max(gInputs) > size(colors,1)
warning( 'More inputs than possible colors, colors will be re-used' );
end
% Create marker array
[gYears, uYears] = findgroups(Years);
if max(gYears) > numel(markers)
warning( 'More years than possible markers, markers will be re-used' );
end
% handle index out of range
markers = markers(mod((1:max(gYears))-1,numel(markers))+1);
colors = colors(mod((1:max(gInputs))-1,size(colors,1))+1,:);
% Setup as above...
lineProps = {'markersize', 5, 'linestyle', 'none', 'LineWidth', 2};
figure(); hold on
for iYr = 1:max(gYears)
for iIn = 1:max(gInputs)
idx = (iYr == gYears) & (iIn == gInputs);
line(t1Response(idx), t2Response(idx), 20, 'color', colors(iIn,:), 'Marker', markers{iYr}, 'handlevisibility', 'off', lineProps{:} );
end
end
% Spoof markers for the legend
for iYr = 1:max(gYears)
line( NaN, NaN, 'color', 'k', 'Marker', markers{iYr}, 'displayname', num2str(uYears(iYr)), lineProps{:} );
end
for iIn = 1:max(gInputs)
line( NaN, NaN, 'color', colors(iIn,:), 'Marker', 'o', 'markersize', 20, 'displayname', num2str(uInputs(iIn)), lineProps{:} );
end
hold off
legend('show')
关于matlab - 按 2 个变量分组,一个变量具有独特的颜色,另一个变量具有独特的形状,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67011177/
对于 Prometheus 指标集合,如标题,我真的找不到只能通过 type Summary 完成的用例。 ,似乎它们都可以通过 type Histogram 以某种方式完成还。 让我们以请求并发度量
这个问题在这里已经有了答案: Ignore case while using duplicated (1 个回答) 关闭 9 个月前。 使用不区分大小写的 unique(tolower(x)) 删除
应用程序监控服务的一个有用功能是每次发生新的、独特的错误/问题/异常时发送警报(例如电子邮件)(即不是每次发生)。要么只是第一次,要么最多每次 X 次(一天或一周等)。例如,这可以通过 Visual
应用程序监控服务的一个有用功能是每次发生新的、独特的错误/问题/异常时发送警报(例如电子邮件)(即不是每次发生)。要么只是第一次,要么最多每次 X 次(一天或一周等)。例如,这可以通过 Visual
我想要相当于 DB2 中 MySql 的 GROUP_CONCAT 功能。 我尝试过 DB2 的 XML Aggrigate 函数来合并 murows。 SELECT a.ID, sub
我正在运行 python 数据库迁移脚本 (Flask-Migrate) 并添加了 alembic.ddl.imp import DefaultImpl 来解决第一组错误,但现在我收到以下错误。我正在
我有一个逗号分隔的文件“myfile.csv”,其中第 5 列是日期/时间戳。 (mm/dd/yyyy hh:mm)。 我需要列出所有包含重复日期的行(有很多) 我正在通过 cygwin 为 WinX
我使用的是 MySQL 5.7。 我有一个表格如下: -------------------------------------------------- | id | currentcy_id |
所以我有一个像这样的 ng-repeat: Join Ride /md-switch> 但是,每个 md-switch 都有相同的模型,因此当我在 Control
据我了解, Mongoose 预保存 Hook 在将文档插入集合之前但在验证发生之后触发。因此,如果一次验证失败,则不会调用预保存 Hook 。 就我而言,无论如何都会调用它们: 下面的简单代码的作用
如果我对我的目标文件执行此 grep,我会得到例如 275 作为结果。 但是我想学习 awk,所以在 awk 中尝试了这个: awk 'BEGIN { count=0 } /my pattern/
我是一名优秀的程序员,十分优秀!