El Niño Southern Oscillation Data
The following steps display information about the data set Sashelp.ENSO and create Figure B.3:
title 'El Nino Southern Oscillation Data';
proc contents data=sashelp.enso varnum;
ods select position;
run;
title 'The First Five Observations Out of 168';
proc print data=sashelp.enso(obs=5);
run;
Figure B.3
El Niño Southern Oscillation Data
| Month |
Num |
8 |
| Year |
Num |
8 |
| Pressure |
Num |
8 |
| 1 |
0.08333 |
12.9 |
| 2 |
0.16667 |
11.3 |
| 3 |
0.25000 |
10.6 |
| 4 |
0.33333 |
11.2 |
| 5 |
0.41667 |
10.9 |
Copyright © SAS Institute Inc. All rights reserved.