Greetings,
I am new to Posit.cloud. I am a novice. I can not download R, so I am using the cloud version, Posit. When I tried to start exercising my data science course, I was ordered to use Tidyverse, which is one of the R packages. When I browse the Internet for Tidyverse, it says it is an R package and requires me to download. What is it? If it is compulsory, how can I use it on the cloud with Posit cloud.
The tidyverse is a set of powerful packages for data analysis and exploration. You'll find more information here: https://www.tidyverse.org/
To use the tidyverse in Posit Cloud all you need to do is install it in one of your RStudio projects. Run the following code once from a script or the console:
install.packages("tidyverse")
Then you just need to to load it to take advantage of its useful functions.
library(tidyverse)
Here is a fantastic (and free) textbook that can help you get started: https://r4ds.had.co.nz/