still getting the errors:( Errors (2) ERROR: Variable StartWeight in list does not match type prescribed for this list. ERROR: Variable EndWeight in list does not match type prescribed for this list. Warnings Notes (7) 1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 70 71 libname clinic '/home/mdoddala0'; NOTE: Libref CLINIC refers to the same physical library as KRRISH. NOTE: Libref CLINIC was successfully assigned as follows: Engine: V9 Physical Name: /home/mdoddala0 72 data clinic.admit7; 73 set clinic.weightclub; NOTE: There were 5 observations read from the data set CLINIC.WEIGHTCLUB. NOTE: The data set CLINIC.ADMIT7 has 5 observations and 6 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 799.53k OS Memory 29100.00k Timestamp 02/16/2019 04:09:31 AM Step Count 115 Switch Count 3 Page Faults 0 Page Reclaims 181 Page Swaps 0 Voluntary Context Switches 46 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 264 74 proc tabulate data=clinic.admit7; 75 class team; 76 var startweight endweight; ERROR: Variable StartWeight in list does not match type prescribed for this list. ERROR: Variable EndWeight in list does not match type prescribed for this list. 77 table team,(startweight endweight)*mean; 78 run; NOTE: The SAS System stopped processing this step because of errors. NOTE: PROCEDURE TABULATE used (Total process time): real time 0.00 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 388.37k OS Memory 28840.00k Timestamp 02/16/2019 04:09:31 AM Step Count 116 Switch Count 0 Page Faults 0 Page Reclaims 60 Page Swaps 0 Voluntary Context Switches 9 Involuntary Context Switches 0 Block Input Operations 288 Block Output Operations 0
... View more