matteoredaelli / strategico

Automatically exported from code.google.com/p/strategico
GNU General Public License v3.0
1 stars 1 forks source link

Suppressing library messages #32

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
When analyzing thousands of time series, it is better to reduce the output in 
order to save disk space.

I'd like to suppress the output

arimaId: estimation by ML
criterion computed using exact likelihood
  p d q P D Q np    loglik      BIC      AIC rankAIC
1 0 1 0 0 1 1  1 -108.7820 220.3366 219.5640       2
2 2 1 1 0 1 0  3 -106.4385 221.1947 218.8769       1

I tried with 

library(tseries, quietly=TRUE) # works only for the latest R releases
options(Hverbose=FALSE, verbose=FALSE)
suppressMessages(library(tseries, verbose=FALSE))
suppressMessages(library(forecast))

but without any success.

Who can help me?

Original issue reported on code.google.com by matteo.redaelli on 4 Sep 2011 at 10:05