#!/bin/sh
#
DEV=$1
OUTDIR=$2
ARGS=$3


echo scat1..
pl  -prefab scat  data=data1  x=2  y=3  \
	$DEV -o ${OUTDIR}scat1.$DEV $ARGS

echo scat2..
pl  -prefab scat  data=data1  x=2  y=3  id=1 xlbl="Total Ch"  ylbl="White Blood Cell Count"  corr=yes  \
	$DEV -o ${OUTDIR}scat2.$DEV $ARGS

echo scat3..
pl  -prefab scat  data=data3  x=2  y=6  err=3  xerr=7  corr=yes \
	ptshape=triangle ptsize=0.08  ptcolor=red  "errcolor=gray(0.8)" \
	$DEV -o ${OUTDIR}scat3.$DEV $ARGS

