In: Math
I am creating SAS code, but am receiving an errors "
ERROR: Value is out of range or inappropriate.
ERROR: No body file. HTML5(WEB) output will not be created."
This is the code:
option ls=65 ps=65;
data one;
input IQ;
cards;
145
139
122
;
title 'Normal Quantile - Quantile Plot for IQ';
ods graphics on;
proc univariate data=one;
qqplot IQ / normal (mu=est sigma=est);
run;