When I require a library, I don't want all the extra output that goes with it. How can I turn this off?
Has output (bad):
> require('forecast')
Loading required package: forecast
Loading required package: zoo
Attaching package: ‘zoo’
The following objects are masked from ‘package:base’:
as.Date, as.Date.numeric
Loading required package: timeDate
This is forecast 5.4
>
Doesn't have output (good):
> require('forecast')
>