请考虑:
Needs["ErrorBarPlots`"];
fixNumberF1F6 = {{{7.11`, 7.51`, 11.14`, 8.19`, 6.58`},
{2.14`, 2.33`,2.25`, 1.53`,1.71`}},
{{4.69`, 4.79`, 3.78,4.34`, 4.8`},
{2.22`, 2.71`, 3.18`, 2.29`, 1.93`}}}
fixNumberF1F6 [[1,1]]是指条件1的每个受试者的平均固定数, fixNumberF1F6 [[1,2]]标准的偏差。 fixNumberF1F6 [[2]]指的是条件2.
plotOptionsXX[title_, yName_, xName_, colors_: Black] :=
{Frame -> {{True, False}, {True, False}},
PlotStyle -> colors,
PlotLabel ->
Style[title, Bold, 14, Opacity[1], FontFamily -> "Helvetica"],
PlotStyle -> Directive[Black, PointSize[Medium]],
PlotRangePadding -> 0,
Frame -> {{True, False}, {True, False}},
LabelStyle -> Directive[Black, Bold, 12],
FrameLabel -> {{Style[yName, Opacity[1]],
None}, {Style[xName, Opacity[1]], None}},
FrameStyle -> Opacity[0],
FrameTicksStyle -> Opacity[1],
AxesStyle -> Directive[Black, 12],
ImageSize -> laTaille};
ErrorListPlot[fixNumberF1F6[[#]] // Transpose,
PlotRange -> {{0, 6}, {0, 15}},
ImageSize -> 300,
FrameTicks ->{{Range[1, 13, 2], None},{{1, 2, 3, 4, 5}, None}},
PlotStyle -> Directive[Black, AbsolutePointSize[10], AbsoluteThickness[2]],
plotOptionsXX["Mean Fixation number", "Fixation Nuber", "SubNo"]] & /@ Range[2]
左图表示每个受试者的平均固定数以及条件1的标准偏差。在条件2的右侧。
我如何在1个情节中绘制它们?
如果:
fixNumberF1F6across = {{8.10, 1.99}, {4.48, 2.46}}
是主题的平均值和标准差,我怎么能同时显示?
- 我如何在不同科目的类似情节中显示2个条件 - 我怎样才能显示组的平均值和SD值。
答案 0 :(得分:5)
修改强>:
我从头开始。鉴于数据如何简单和干净,最简单的方法是使用ListPlot
和。{1}}
通过Epilog
添加条形图。
你仍然可以调整一下 - 例如。在蓝色和红色数据点和条之间放一个小空格,添加图例等,但基本的想法就在那里。
data = {{{7.11`, 7.51`, 11.14`, 8.19`, 6.58`}, {2.14`, 2.33`, 2.25`, 1.53`, 1.71`}}, {{4.69`, 4.79`, 3.78, 4.34`, 4.8`}, {2.22`, 2.71`, 3.18`, 2.29`, 1.93`}}};
ListPlot[{data[[1, 1]], data[[2, 1]]},
PlotStyle -> {{PointSize[.025], Red}, {PointSize[0.025], Blue}},
Frame -> True,
PlotRange -> {{0.5, 5.5}, {0, 14}},
FrameTicks -> {{Automatic, Automatic}, {Range[5], None}},
FrameLabel -> {{"Fixation (ms)", None}, {"Subject", None}},
Epilog -> {{Red, Thickness[0.003], Dashed,
Line[{{0, m1 = Mean@data[[1, 1]]}, {5.5, m1}}],
Blue, Line[{{0, m1 = Mean@data[[2, 1]]}, {5.5, m1}}]},
Thickness[0.005], Red,
Line[{{#[[1]], #[[2, 1]]}, {#[[1]], #[[2, 2]]}}] & /@
Transpose@{Range[5], ({#[[1]] + #[[2]], #[[1]] - #[[2]]} & /@
Transpose@data[[1]])},
Thickness[0.005], Blue,
Line[{{#[[1]], #[[2, 1]]}, {#[[1]], #[[2, 2]]}}] & /@
Transpose@{Range[5], ({#[[1]] + #[[2]], #[[1]] - #[[2]]} & /@
Transpose@data[[2]])},
}]
以下BoxWhiskerChart
来自您的数据。如果这看起来有点像你感兴趣的东西,它可以被修改,以便从第25百分位到75%百分位的扩散被改变以反映一个s.d的传播。高于和低于平均值。
而且,是的,将组平均值(N = 5)叠加到图表上很容易。
[围绕平均值不完全对称的原因是我使用你的均值和标准差来生成原始数据,假设正态分布。我每次试用时只使用了100个数据点,所以有点偏斜是很自然的。如果我们调整图表以反映对称的标准偏差,就不会发生这种情况。]
答案 1 :(得分:5)
对于任意数量的系列:
plotseries[a_] :=
Module [{col = ColorData[22, "ColorList"]},
Plot[Evaluate@(Piecewise[{#[[2]], #[[1]] - 1/3 <= x <= #[[1]] + 1/3} & /@
Thread[List[Range@Length@#, #]]] & /@
({a[[#, 1]] + a[[#, 2]], a[[#, 1]] - a[[#, 2]]}) & /@
(Range@Length@a)), {x, 0, 1 + Length@(a[[1, 1]])},
ClippingStyle -> None,
PlotStyle -> {None},
Exclusions -> False,
Filling -> ({2 # - 1 -> {{2 #}, Directive[col[[#]], Opacity[.2]]}} & /@
Range@Length@a),
Ticks -> {Range@Length[a[[1, 1]]], Range@#2 &},
AxesLabel -> {Style["Subject", Medium, Bold], Style["Fixation Time", Medium, Bold]},
Epilog ->
MapIndexed[{Directive[col[[#2[[1]]]], PointSize[.03]],
Point@Thread[List[Range@Length[#1[[1]]], #1[[1]]]]} &, a]
]
]
b = Table[{Table[j^(i/3) + i, {j, 6}], Table[1, {j, 6}]}, {i, 1, 3}];
plotseries[b]
答案 2 :(得分:4)
我对错误图没有太大作用,所以这很可能是一种非标准形式的显示数据,并根据ErrorBarFunction
文档中的示例匆匆放在一起。
(*split it up so it's easier to follow*)
meanCond1 = fixNumberF1F6[[1, 1]];
stdCond1 = fixNumberF1F6[[1, 2]];
meanCond2 = fixNumberF1F6[[2, 1]];
stdCond2 = fixNumberF1F6[[2, 2]];
x1 = Transpose@{meanCond1, meanCond2};
x2 = ErrorBar @@@ Transpose@{stdCond1, stdCond2};
Show@(ErrorListPlot[{#1},
ErrorBarFunction ->
Function[{coords, errs}, {Opacity[0.2], EdgeForm[{#2}],
Rectangle[coords + {errs[[1, 1]], errs[[2, 1]]},
coords + {errs[[1, 2]], errs[[2, 2]]}]}], PlotStyle -> #2,
Axes -> False, Frame -> True,
FrameLabel -> {"Condition 1", "Condition 2"}] & @@@
Transpose@{Transpose@{x1, x2}, {Blue, Yellow, Green, Gray, Red}})
每个点都是不同的主题。 x
坐标是条件1的平均值,y
坐标是条件2的平均值。矩形边的长度是各自的标准偏差。因此,虽然它确实重叠,但如果你谨慎选择颜色(如果没有太多的主题),那么它可能会起作用。
答案 3 :(得分:3)
ErrorListPlot[Transpose /@ fixNumberF1F6,
PlotRange -> {{0, 6}, {0, 15}}, ImageSize -> 300,
FrameTicks -> {{Range[1, 13, 2], None}, {{1, 2, 3, 4, 5}, None}},
PlotStyle ->
{
Directive[Opacity[0.6],Black, AbsolutePointSize[10], AbsoluteThickness[2]],
Directive[Opacity[0.6],Gray, AbsolutePointSize[10], AbsoluteThickness[2]]
},
plotOptionsXX["Mean Fixation number", "Fixation Number", "SubNo"]
]
ErrorListPlot[fixNumberF1F6across, PlotRange -> {{0, 3}, {0, 15}},
ImageSize -> 300,
FrameTicks -> {{Range[1, 13, 2], None}, {{1, 2}, None}},
PlotStyle -> Directive[Black, AbsolutePointSize[10], AbsoluteThickness[2]],
plotOptionsXX["Mean Fixation number", "Fixation Number", "Condition Number"]
]
至于第3名。如果你想展示个别科目的数据,我不知道如何谈论小组意味着什么。第四个(第五个?)问题完全不清楚。我建议你删除这些问题,因为它们似乎不是Mathematica编程特有的。