Help

Help - Functions in R

# get help information about the function 'plot'

help(plot)

Function for plotting of R objects

plot(x, y, ...)

:q # Exit/quit by typing letter 'q'


# show examples, instead help documentation

example(plot)

plot(sin, -pi, 2*pi) # see ?plot.function

Hit <Return> to see next plot:


# find function that contains the tag 'concatenate' in the help text

help.search('concatenate')

base::cat Concatenate and Print

base::paste Concatenate Strings

°°°

# get information about an installed R package

help(package = 'corrplot')

Title: Visualization of a Correlation Matrix

Version: 0.84

°°°