I am trying to make a dataframe with a specific name.
Now I have a fileList:
> fileList
[1] "ml17_280_Glide_Day1-1.1_10Hz.txt" "ml17_280_Glide_Day1-1.1_15Hz.txt"
[3] "ml17_280_Glide_Day1-1.1_20Hz.txt" "ml17_280_Glide_Day1-1.1_25Hz.txt"
[5] "ml17_280_Glide_Day1-1.1_5Hz.txt"
fileList[i] represents a name of each dataframe including numeric values, and I would like to make another dataframe by
dat <- fileList[i]
But, this results in as below
> dat
[1] "ml17_280_Glide_Day1-1.1_10Hz.txt"
How can I copy the dataframe to another?