Hi
I would like to convert a table that contains count data into a dataset that contains individual observations but I'm not sure how
For example, I would like to convert a table that looks like this
X Y count
1 3 2
2 6 4
5 4 3
into a dataset that looks like this
X Y
1 3
1 3
2 6
2 6
2 6
2 6
5 4
5 4
5 4
Does anyone know of a SAS code that can carry out this conversion?
Thanks!
... View more