Reputation: 65
I've been using R for a while now, but all of a sudden the help() command doesn't work anymore. This is what I get when I try ?tidyverse for instance (the package is obviously installed), but I can't access the documentation for some reason (won't work with ANY package)
?tidyverse No documentation for ‘tidyverse’ in specified packages and libraries: you could try ‘??tidyverse’
I've googled this extensively and I have no idea on what I'm doing wrong?
Upvotes: 1
Views: 1130
Reputation: 493
You might not have loaded the packages. Try
library(tidyverse)
?tidyverse
Upvotes: 1
Reputation: 65
Apparently I had every package out of date and just like others commented here I need to have the package updated and loaded before I can access it's documentation. thank you
Upvotes: 0