Si tiene acceso a una línea de comando, es posible que prefiera ejecutar su script desde la línea de comando con R CMD BATCH.
== comenzar el contenido del script.R ==
a <- "a"
a
How come I do not see this in log
== contenido final del script.R ==
En el símbolo del sistema ("$" en muchas variantes un * x, "C:>" en Windows), ejecute
$ R CMD BATCH script.R &
El "&" final es opcional y ejecuta el comando en segundo plano. El nombre predeterminado del archivo de registro tiene "out" agregado a la extensión, es decir, script.
== comenzar el contenido del 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
== contenido final del script.Rout ==