Table SASHELP.CLASS
| Obs. | Name | Sex | Age | Height | Weight |
|---|---|---|---|---|---|
| 1 | Alfred | M | 14 | 69.0 | 112.5 |
| 2 | Alice | F | 13 | 56.5 | 84.0 |
| 3 | Barbara | F | 13 | 65.3 | 98.0 |
--- output: pdf_document: default html_document: default --- # Test SASkernel ```sas proc print data=sashelp.class (obs=3); run; ``` SAS Connection established. Subprocess id is 5852
| Obs. | Name | Sex | Age | Height | Weight |
|---|---|---|---|---|---|
| 1 | Alfred | M | 14 | 69.0 | 112.5 |
| 2 | Alice | F | 13 | 56.5 | 84.0 |
| 3 | Barbara | F | 13 | 65.3 | 98.0 |
Procédure MEANS
| Variable | N | Moyenne | Ecart-type | Minimum | Maximum |
|---|---|---|---|---|---|
|
Age
Height
Weight
|
19
19
19
|
13.3157895
62.3368421
100.0263158
|
1.4926722
5.1270752
22.7739335
|
11.0000000
51.3000000
50.5000000
|
16.0000000
72.0000000
150.0000000
|