Si vous avez accès à une ligne de commande, vous préférerez peut-être exécuter votre script à partir de la ligne de commande avec R CMD BATCH.
\== commencer le contenu de script.R ==
a <- "a"
a
How come I do not see this in log
\== fin du contenu de script.R ==
À l'invite de commande ("$" dans de nombreuses variantes d'un*x, "C:>" sous Windows), exécutez
$ R CMD BATCH script.R &
Le "&" de fin est facultatif et exécute la commande en arrière-plan. Le nom par défaut du fichier journal comporte l'extension "out", c'est-à-dire script.Rout
\== commencer le contenu de script.Rout ==
R version 3.1.0 (2014-04-10) -- "Spring Dance"
Copyright (C) 2014 The R Foundation for Statistical Computing
Platform: i686-pc-linux-gnu (32-bit)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.
Natural language support but running in an English locale
R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.
Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.
[Previously saved workspace restored]
> a <- "a"
> a
[1] "a"
> How come I do not see this in log
Error: unexpected symbol in "How come"
Execution halted
\== contenu final de script.Rout ==