help.start()
# Ecriture 1 avec le ?
# ex : obtenir de l'aide sur la fonction length
?length
#ou
# Ecriture 2 avec le help
# obtenir de l'aide sur la fonction plot
help(plot)
# obtenir toute l'aide contenant le mot clef median
help.search("median")
# ici on cherche la chaîne de caractère ead
apropos("ead")
# obtenir les arguments (paramètres) de la fonction read.table
args(read.table)
# Il suffit d'écrire une ligne précédée de dièse #
# installing/loading the package:
if(!require(installr)) {
install.packages("installr"); require(installr)} #load / install+load installr
# using the package:
updateR() # this will start the updating process of your R installation. It will check for newer versions, and if one is available, will guide you through the decisions you'd need to make.