data teorica; input C_10 A_79 A_818 A_1191 M_5 M_76 M_90; datalines; 0.82 1.27 1.08 0.82 1.17 1.23 1.26 0.90 1.41 1.13 1.00 1.61 1.89 1.55 1.15 1.46 1.13 1.25 1.91 2.04 1.55 1.33 1.64 1.32 1.39 2.15 2.45 1.87 1.49 1.85 1.47 1.58 2.20 2.53 2.01 1.68 1.87 1.82 1.66 2.41 2.72 2.30 ; proc print; title 'Dados usados na aula teórica'; run; proc means var std stderr cv mean clm; title 'Estatísticas de interesse'; run;