I created a dynamically named data frame in a loop. Now in the same loop, i want another data frame to have the value of this dynamically named data frame
assign(paste("MR", i, sep = '_'), MR2[MR2$PropertyType==MRU[i,1],])
Above mentioned code was used to create a dynamically named data frame. Now i need to put this MR_1's value into MR2_Bound (MR_i is MR_1 for i=1)
MR2_Bound <- value(paste("MR", i, sep = '_'))
This doesn't seem to be working. It puts the character string MR_i in MR2_Bound