I know how to do this in Python, but right now I need to use R. I have a large dataframe with 15m records and 65 variables. I have subset the data to smaller regions of interest and I want to use the subset name as a variable in later steps in my script. For example
x <- subset(largedata, Name=="Test").
How to I get the name x
as a variable, not as a data input?