0

My question is similar to this question and in fact, is answered there. But because it took me a lot effort to find the answer there. I preferred to create a new more organized one and answer it myself.Now the question is:

If I want to see all methods, dataframes, etc of a package that I only know its name, what should I do to access them very easily?

Community
  • 1
  • 1
Ehsan88
  • 3,569
  • 5
  • 29
  • 52

1 Answers1

0

Just enter this code:

help(package='PACKAGENAME', help_type='html')

for example to see all you have in the R basic package, stats:

help(package='stats',help_type='html')
Ehsan88
  • 3,569
  • 5
  • 29
  • 52