Subscripted Variables

Contents Index


Subscripted variables can be used to easily read groups of values in the input statement.

The following example creates and reads values for five variables: q1, q2, q3, q4, and q5. The data step is written

data quiz;
input q1-q5;
cards;
.....


Contents Index

Copyright © 1997 by Jerry Alan Veeh. All rights reserved.