| Author |
Comment/Response |
David Belisle
|
05/08/97 11:14am
Reply to message #354 from george marrash: > When I use the ListPlot command to plot data the points are very small on the screen on the order of one pixel, yet when the notebook is printed they are easily readable, is there any way to change the size of the points in the ListPlot command > > regards george There are two ways to do it, one is to use the option PlotStyle->PointSize[0.03], and another is PlotStyle->AbsolutePointSize[5]. PointSize is generally easier to use, as it scales the size of the points to the size of the graph. ie list=Table[Random[],{100}]; ListPlot[list,PlotStyle->PointSize[0.03]] Good Luck Dave
URL: , |
|