wolfram-mathematica - listPlot 的多个指令

标签 wolfram-mathematica styles plot mathematica-8

daList={{0.059, 0.298, 0.726, 0.735, 1.461, 2.311, 3.315}, 
        {0.05, 0.404,0.664, 0.782, 1.376, 2.328, 3.432}, 
        {0.087, 0.628, 0.986, 1.187,1.914, 3.481, 4.993}, 
        {0.073, 0.594, 0.975, 1.147, 2.019, 3.417,5.037}, 
        {0.143, 0.821, 1.442, 1.595, 2.983, 4.98, 7.604}, 
        {0.107,0.871, 1.431, 1.684, 2.964, 5.015, 7.394}}


ListPlot[daList,
         Joined -> True,
         PlotRange -> {{1, 7}, {0, 7}}, 
         PlotStyle -> {{Thick, Lighter[Red, .5]}, 
                       {Dashed, Black}, 
                       {Thick,Lighter[Red, .3]}, 
                       {Dashed, Black}, 
                       {Thick,Lighter[Red, .1]}, 
                       {Dashed, Black}},
         Prolog ->{GrayLevel[0.5], EdgeForm[Thickness[.005]], 
                   Rectangle[{1.01, 0.01}, {6.99, 6.99}]}]

如您所见,我需要 为每一行分配不同的指令。

我希望黑色虚线是点(加入-> 假)。

我还不能掌握 方法来为子列表 分组指令。

感谢您的关注。

最佳答案

如果您希望加入所有其他情节,您可以设置 Joined->{True, False} ,例如

ListPlot[daList, Joined -> {True, False}, 
 PlotRange -> {{1, 7}, {0, 7}}, 
 PlotStyle -> {{Thick, Lighter[Red, .5]}, {Dashed, Black}, {Thick, 
    Lighter[Red, .3]}, {Dashed, Black}, {Thick, 
    Lighter[Red, .1]}, {Dashed, Black}}, 
 Prolog -> {GrayLevel[0.5], EdgeForm[Thickness[.005]], 
   Rectangle[{1.01, 0.01}, {6.99, 6.99}]}]

产生

编辑

关于您的评论,我想您总是可以分别绘制偶数和奇数集并将它们与 show 结合起来。所以对于你的例子:
joinedStyle = {Thick, Lighter[Red, #]} & /@ {.5, .3, .1};
pointStyle = Black;

plot1 = ListPlot[daList[[1 ;; ;; 2]], Joined -> True, PlotStyle -> joinedStyle,
  PlotRange -> {{1,7},{0,7}}];
plot2 = ListPlot[daList[[2 ;; ;; 2]], Joined -> False, PlotStyle -> pointStyle];
Show[plot1, plot2, PlotRange -> {{1, 7}, {0, 7}}, 
  Prolog -> {GrayLevel[0.5], EdgeForm[Thickness[.005]], 
    Rectangle[{1.01, 0.01}, {6.99, 6.99}]}]

关于wolfram-mathematica - listPlot 的多个指令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7778996/

相关文章:

fonts - 让 Mathematica 前端服从 FontFamily 选项

wolfram-mathematica - mathematica,简化三角函数

c# - 内容不显示在代码中的切换按钮样式和模板上

plot - gnuplot,隐藏默认 xtics,添加 xtics

python - 如何添加一条最适合散点图的线

c - C 和 Mathematica 中的并行计算

wolfram-mathematica - 是否可以在播种时访问部分列表内容,还是必须等待它被收割?

javascript - JavaScript 中本地定义的样式和动画

css - 如何从 QPushButton 中删除点击效果

python - 从 Pandas 数据框中绘制堆积条形图