我经常需要同时可视化多个数据集,通常是在ListPlot或其Log-companions中。由于数据集的数量通常大于容易区分的线条样式的数量,并且创建大型情节图例仍然有点不明确我仍在寻找一种在我的图中注释不同线条/集合的好方法。在屏幕上工作时工具提示很不错,但如果我需要打印情节,它们就无济于事。
最近,我玩了Mesh选项来枚举我的数据集,发现了一些奇怪的东西
GraphicsGrid[Partition[Table[ListPlot[
Transpose@
Table[{Sin[x], Cos[x], Tan[x], Cot[x]}, {x, 0.01, 10, 0.1}],
PlotMarkers -> {"1", "2", "3", "4"}, Mesh -> i, Joined -> True,
PlotLabel -> "Mesh\[Rule]" <> ToString[i], ImageSize -> 180], {i,
1, 30}], 4]]
结果在我的机器上看起来像这样(Windows 7 x64,Mathematica 8.0.1):
有趣的是,对于Mesh-> 2,8和10,结果看起来像我预期的那样,其余的则没有。要么我不理解Mesh选项,要么它不理解我。
以下是我的问题:
答案 0 :(得分:12)
你可以尝试这些方面的东西。将每一行设为一个按钮,单击该按钮即可识别自身。
plot=Plot[{Sin[x],Cos[x]},{x,0,2*Pi}];
sinline=plot[[1,1,3,2]];
cosline=plot[[1,1,4,2]];
message="";
altplot=Append[plot,PlotLabel->Dynamic[message]];
altplot[[1,1,3,2]]=Button[sinline,message="Clicked on the Sin line"];
altplot[[1,1,4,2]]=Button[cosline,message="Clicked on the Cos line"];
altplot
如果添加EventHandler,您可以获取单击的位置,并将具有相关定位标签的Inset添加到绘图中。将绘图包装在Dynamic中,以便在每次单击按钮后自动更新。它工作正常。
回应评论时,这是一个更全面的版本:
plot = Plot[{Sin[x], Cos[x]}, {x, 0, 2*Pi}];
sinline = plot[[1, 1, 3, 2]];
cosline = plot[[1, 1, 4, 2]];
AddLabel[label_] := (AppendTo[plot[[1]],
Inset[Framed[label, Background -> White], pt]];
(* Remove buttons for final plot *)
plainplot = plot;
plainplot[[1, 1, 3, 2]] = plainplot[[1, 1, 3, 2, 1]];
plainplot[[1, 1, 4, 2]] = plainplot[[1, 1, 4, 2, 1]]);
plot[[1, 1, 3, 2]] = Button[sinline, AddLabel["Sin"]];
plot[[1, 1, 4, 2]] = Button[cosline, AddLabel["Cos"]];
Dynamic[EventHandler[plot,
"MouseDown" :> (pt = MousePosition["Graphics"])]]
要添加标签,请单击该行。设置为“plainplot”的最终带注释的图表是可打印和可复制的,不包含动态元素。
[当天晚些时候]另一个版本,这次是通用的,并且基于初始图表。 (使用部分Mark McClure的解决方案。)对于不同的图,可以根据需要编辑'ff'和'spec'。
ff = {Sin, Cos, Tan, Cot};
spec = Range[0.1, 10, 0.1];
(* Plot functions separately to obtain line counts *)
plots = Array[ListLinePlot[ff[[#]] /@ spec] &, Length@ff];
plots = DeleteCases[plots, Line[_?(Length[#] < 3 &)], Infinity];
numlines = Array[Length@Cases[plots[[#]], Line[_], Infinity] &,
Length@ff];
(* Plot functions together for annotation plot *)
plot = ListLinePlot[#@spec & /@ ff];
plot = DeleteCases[plot, Line[_?(Length[#] < 3 &)], Infinity];
lbl = Flatten@Array[ConstantArray[ToString@ff[[#]],
numlines[[#]]] &, Length@ff];
(* Line positions to substitute with buttons *)
linepos = Position[plot, Line, Infinity];
Clear[line];
(* Copy all the lines to line[n] *)
Array[(line[#] = plot[[Sequence @@ Most@linepos[[#]]]]) &,
Total@numlines];
(* Button function *)
AddLabel[label_] := (AppendTo[plot[[1]],
Inset[Framed[label, Background -> White], pt]];
(* Remove buttons for final plain plot *)
plainplot = plot;
bpos = Position[plainplot, Button, Infinity];
Array[(plainplot[[Sequence @@ Most@bpos[[#]]]] =
plainplot[[Sequence @@ Append[Most@bpos[[#]], 1]]]) &,
Length@bpos]);
(* Substitute all the lines with line buttons *)
Array[(plot[[Sequence @@ Most@linepos[[#]]]] = Button[line[#],
AddLabel[lbl[[#]]]]) &, Total@numlines];
Dynamic[EventHandler[plot,
"MouseDown" :> (pt = MousePosition["Graphics"])]]
这是它的外观。注释后,可以找到普通图形对象设置为'plainplot'变量。
答案 1 :(得分:8)
一种方法是分别生成图表,然后将它们一起显示。这产生的代码比其他帖子更像你的代码,因为PlotMarkers
似乎按照我们在处理一个数据集时的预期方式发挥作用。我们可以使用ColorData
PlotStyle
来获得相同的颜色。结果如下:
ff = {Sin, Cos, Tan, Cot};
plots = Table[ListLinePlot[ff[[i]] /@ Range[0.1, 10, 0.1],
PlotStyle -> {ColorData[1, i]},
PlotMarkers -> i, Mesh -> 22], {i, 1, Length[ff]}];
(* Delete the spurious asymptote looking thingies. *)
plots = DeleteCases[plots, Line[ll_?(Length[#] < 4 &)], Infinity];
Show[plots, PlotRange -> {-4, 4}]
答案 2 :(得分:4)
您打算绘制可计算曲线或实际数据吗?
如果它是可计算的曲线,那么通常使用plot legend (key)。 您可以使用不同的色调和厚度来区分灰度打印机上的线条。 PlotLegends文档中有许多示例。
如果是真实数据,那么通常数据足够稀疏,您可以将PlotMarkers
用于实际数据点(即不指定Mesh
)。您可以使用自动PlotMarkers
,也可以使用包含BoxWhisker
标记的自定义PlotMarkers
来表示各种不确定因素。