A short remark. This would be a blog entry if those still existed.

I am comparing plot,options.

The style=point option has versatile options for symbols, their sizes, the number of points:

  , 'style' = point
  , 'numpoints' = 50
  , 'symbol' = solidcircle
  , 'symbolsize' = 8

 

The linestyle=dot option does not give so much control and is somewhat less elegant

  , 'linestyle' = dot
  , 'thickness' = 3

 

The spacing produced is different.

Is there a way to combine the equal-spacing produced by linestyle=dot with the versatility of the style=point options, in as few lines of code as possible?


Please Wait...