You are on page 1of 1

Session 1

# First things we should learn before starting R is help command


# How to use Help Command
?help()
?mean()
# we can also use the help command in two way's
?help()
help("mean")
help("factor")
#by using this command we can search any specific word which is there in any of the
package in the R environment
help.search("mean")
help.search("regression")
#--------------------------------------------------------
#--------------------------------------------------------
?example()
example("mean")
example("median")
# for regression use lm
example("lm")

http://learnrmanoharkapse.blogspot.com

You might also like