I'm trying to make a simple scatterplot using GPLOT but I can't seem to get it working. I copied the code exactly from lecture, no error messages, nothing in result viewer except my table. What am I missing? Thanks for help. DATA Plastic;
INPUT hardness time @@;
CARDS;
199 16 205 16 196 16 200 16 218 24 220 24 215 24 223 24 237 32 234 32 235 32 230 32 250 40 248 40 253 40 246 40
;
RUN;
PROC PRINT DATA=Plastic;
RUN;
SYMBOL1 V=CIRCLE I=SM70S;
PROC GPLOT DATA=Plastic;
PLOT hardness*time / FRAME;
RUN;
... View more