Page 1 of 1

How can I turn echo off?

Posted: Tue Apr 24, 2018 8:18 am
by GerineLodder
I don't need the information currently provided (Adapting for xxx iterations; burning in for x of y; actual update x of y) etc.
How do I turn this off? I don't see an option under ?runMLwiN

Re: How can I turn echo off?

Posted: Tue Apr 24, 2018 8:50 am
by ChrisCharlton
The stdout and stderr parameters of the runMLwiN function take the same form as in the system2 function (https://stat.ethz.ch/R-manual/R-devel/l ... stem2.html). You can therefore redirect the output to a file by specifying one here, or suppress it completely by setting these parameters to NULL or FALSE.

Re: How can I turn echo off?

Posted: Tue Apr 24, 2018 3:06 pm
by GerineLodder
thanks, that worked!