Starting on my first home-project in R and am having trouble with reading my data frame for future algorithm construction. In this instance, I simply want to loop through the data frame and store the data from each observation (rows) into a vector or similar data structure. Each data structure will be composed of a string and some integers and doubles. The caveat I am facing is I want each data structure I build to be named in association with the string that it contains. So as you can see from the image of my data frame, each time I loop through, I want to create a structure named for each Stats$teamName, containing all of the proceeding data in the observation.Image of Data Frame
So after looping through the first observation, I want a structure named "Virginia" to be made that looks like this: ("Virginia", 2, 1, 1, 2) and so on for each row.