Reputation: 4926
I want to provide an option for user to open whatever file he/she wants just by selecting the csv file. Is there any option in R to do so? Surprisingly I could not find such feature.
Upvotes: 0
Views: 423
Reputation: 972
I am unclear of what you need. But my understanding is you need something like this:
data_frame = read.csv(file.choose())
Upvotes: 1