mara
November 6, 2018, 12:31pm
2
Could you please describe your issue so we know what you need help with?
Just a guess based on what you've included:
Are you trying to install the tidyverse package? If so, you should run
install.packages("tidyverse")
Right now, you're using installed.packages()
which is a function that:
Find(s) (or retrieve(s)) details of all packages installed in the specified libraries.
Edit Also, please note that unless this works for you in vanilla R but not in RStudio, then the IDE category is not the best fit (see FAQ below for disambiguation).
Aside: goals for this thread I'm hoping this will help people disambiguate R from RStudio, and also help with getting questions in the right category. This is a bit of a mashup of the times I've tried to explain this in individual threads, so please feel free to add to this topic for further clarification/point out corrections, etc.
Before putting a code-related question in the #rstudio-ide category or using the rstudio tag, it's helpful to ask yourself:
Does this work in the regular R GUI, but not when you're in RStudio?
If you're using RStudio , you're using R — RStudio is just an IDE (Integrated Development Environment) in which you are using the R language. (On of my favourite fi…
1 Like