Test SASkernel

In [1]:
proc print data=sashelp.class (obs=3);
run;
SAS Connection established. Subprocess id is 5852

Out[1]:
Sortie SAS

Sortie SAS

Le Système SAS

La PRINT Procédure

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
In [2]:
proc means data=sashelp.class;
  var Age Height Weight; 
run;
Out[2]:
Sortie SAS

Sortie SAS

Le Système SAS

Procédure MEANS

La MEANS Procédure

Statistiques descriptives

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
In [ ]: