hi , I have just started learning R and it is my first day. I have attempted browseVignettes("ggplot2"). I get the page with the links to source etc . but when I click on the links I get "The requested page was not found."
https://ad831a9ef3c749d586c95d5498959230.app.rstudio.cloud/library/tidyverse/doc/manifesto.Rmd
I am not able to figure out what I am doing wrong here. -Sunitha
Are you sure that you have ggplot2 installed?
Try
library(ggplot2)
If it is not installed do
install.packages("ggplot2)
then try
browseVignettes("ggplot2")
Tried this again , same issue
install.packages("tidyverse") library(ggplot2) browseVignettes("ggplot2")
Beats me. I run Ubuntu and the vignettes should be in R/x86_64-pc-linux-gnu-library/4.1/ggplot2/docs for it. I don't know where they would be for a Windows or Mac.
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed. If you have a query related to it or one of the replies, start a new topic and refer back with a link.