/* Produces a landscape, color postscript graph which maybe printed on the HP color deskjet printer. This graph has 4 different colored lines, one per type, that connect the means and have +/- 1 stddev error bars. To print under unix to the HP DeskJet 1200C in Statistics: lpr -Pcolorps graphname.ps Programmed by Jim zumBrunnen 10/16/95 */ goptions rotate=landscape device=dj1200c gaccess=gsasfile gsfmode=replace; axis1 order=(0 to 10 by 1); symbol1 i=std1tj color=red; symbol2 i=std1tj color=blue; symbol3 i=std1tj color=green; symbol4 i=std1tj color=black; proc gplot; plot y*x=type/vaxis=axis1; filename gsasfile 'graphname.ps';