/* 
The two libname commands will make sure SAS can find
the location of the ma2611 and sasdata libraries
*/
libname ma2611 'R:\SAS\MA2611';
libname sasdata '\\rivet.wpi.edu\sas\sasdata8';
proc sgplot data=sasdata.laser0;
 series x=order y=operator_1;
 series x=order y=operator_2;
 series x=order y=operator_3;
 series x=order y=operator_4;
run;