# Getting help on a function (seq - functionname)
?seq
help(seq)
# Run all the R code from the Examples part of R's online help topic
example(seq)

# demo is a user-friendly interface to running some demonstration R scripts.
# demo() gives the list of available topics.
demo()

# Allows for searching the help system for documentation matching
# a given character string in the (file) name, alias, title, concept
# or keyword entries (or any combination thereof), using either fuzzy
# matching or regular expression matching. Names and titles of the
# matched help entries are displayed nicely formatted.
??"multivariate normal"
help.search("multivariate normal")

# help for loop
?for

#
?Startup

?files

