Is there a way to convert data that is already binned to one single column of data? I have a few hundred lines of data that look like this:
Number - Freq.
1 - 5
2 - 3
3 - 2
.
.
.
I would like them converted back into a single column like this:
1
1
1
1
1
2
2
2
3
3
There are too many to do manually, so I need some way to automate it. Any suggestions? Thanks
Number - Freq.
1 - 5
2 - 3
3 - 2
.
.
.
I would like them converted back into a single column like this:
1
1
1
1
1
2
2
2
3
3
There are too many to do manually, so I need some way to automate it. Any suggestions? Thanks