It is possible to make a dotted ListPlot. For example:
x = Range[0, 1, 0.0001];
y = Sin[x];
ListPlot[Transpose[{x, y}], PlotRange -> All, Joined -> True, PlotStyle -> Dotted]

Is it possible to modify the frequency (i.e., spacing) of dotting?
|
It is possible to make a dotted
Is it possible to modify the frequency (i.e., spacing) of dotting? |
|||
|
It is indeed. As the documentation states, So for example
|
|||
|
|
|
||||
|
|
AbsoluteDashing– belisarius Jul 13 '12 at 15:09Dottedis the same asDashing[{0, Small}], you could replaceSmallwithMediumorLarge... – J. M.♦ Jul 13 '12 at 15:12