i have applied following regression everytime same error. i have pasted my log over here. please take a look. i have applied regression by putting class fam and also without putting class fam, both time same error.
proc glm data=d9;
model bdr = fam tang MTB size prof; class fam; by count;
run;
275 *logistic regression; 276 proc glm data=d9; 277 278 model bdr = fam tang MTB size prof; ERROR: Variable Fam should be either numeric or specified in the CLASS statement. NOTE: The previous statement has been deleted. 279 class fam; 280 by count; 281 282 run;
NOTE: Interactivity disabled with BY processing. NOTE: PROCEDURE GLM used (Total process time): real time 0.01 seconds cpu time 0.01 seconds
... View more