failurevalues1 = {21, 19., 23., 22., 20., 28., 25.};
failurevalues2 = {30., 28., 28., 29., 31., 28., 30.};
failurevalues3 = {344., 552., 326., 267., 382., 301., 354.};
plot1 = ProbabilityScalePlot[failurevalues1, "LogNormal",
PlotRange -> {{10, 1000}, {1, 99}}, PlotStyle -> Red, Frame -> True,
FrameLabel -> {"Number of Cycles", "CDF"}, PlotLabel -> "Plot 1"]
plot2 = ProbabilityScalePlot[failurevalues2, "LogNormal",
PlotRange -> {{10, 1000}, {1, 99}}, PlotStyle -> Black,
Frame -> True, FrameLabel -> {"Number of Cycles", "CDF"},
PlotLabel -> "Plot 2"]
plot3 = ProbabilityScalePlot[failurevalues3, "LogNormal",
PlotRange -> {{10, 1000}, {1, 99}}, PlotStyle -> Blue,
Frame -> True, FrameLabel -> {"Number of Cycles", "CDF"},
PlotLabel -> "Plot 3"]
So far, so good. The individual plots look reasonable.
plot4 = Show[plot1, plot2, plot3, PlotLabel -> "Plot Comparison"]
Here is the problem, why is only 1 reference line shown in plot4 ? How can I display the 2 missing reference lines ?




Showtakes only first argument's options. In this caseplot1's but I don't know which option is the reason. – Kuba Sep 06 '13 at 20:33InputForm[Epilog /. Options[#, Epilog]] & /@ {plot1, plot2, plot3}.Epilogis an option ofGraphicsand, of course, of any plotting function likePlotorProbabilityScalePlot! – Alexey Popkov Sep 07 '13 at 20:23