R est une sorte de langage de programmation dérivé du langage S et dédié aux statistiques et sorties graphiques.
args <- commandArgs(TRUE)
getwd()
for
: for (arg in args){ print(arg) }
monfichier=file("cinetik.txt","r")
data=read.table(monfichier, header=T)
png("fig.png",width=400,height=300) plot(data$temps, data$temoin) dev.off()
# Comment
c(1,"plop",c(2,"3"))
NB: chaque élément est index, mais cet index commence à 1!
filePath=paste(path, fileName, sep="/")