RStudio I do not show import dataset by URL

0

I just started with an R course and I'm in the part of importing data, the option to import from a URL comes out in the course -

But in my Rstudio it does not come out, this is because I'm missing some package? Does the version you install (last) no longer allow that kind of amount?

I can do it by command only that I do not get the option from the import:

> sample <- read.table("http://aprender.uib.es/Rdir/pearson.txt", header=TRUE, quote="\"")
> View(sample)

    
asked by Juan 27.12.2018 в 20:58
source

1 answer

1

If I remember correctly this option was replaced a long time ago by "From text (readr)..." , in which you can indicate the url to import, click on the "update" button to read it and then it is just configure the appropriate options, this It also generates the code to copy in the script if you need it.

    
answered by 27.12.2018 / 21:37
source