Say I have a large dataset, and the information is organized based on a type of entry, and the amount of occurrences of that type of entry.
Say...
Area Animal Observations
US Cat 4
NE Cat 9
US Dog 2
My question is how would I create a dataset (to do analysis in R) that would list the items like...
Say...
Area Animal
US Cat
US Cat
US Cat...
US
NE
NE
NE
NE....
US.. Dog..
I'm asking because I have a large data set and I'm trying to get each entry for each row, rather them being grouped. Anyone know how to do this?