exAres
exAres

Reputation: 4926

Is there any way to show "open file wizard" in R instead of loading file by read.csv?

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

Answers (1)

Kartheek Palepu
Kartheek Palepu

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

Related Questions