Skip to content

Commit

Permalink
no longer outputs messages
Browse files Browse the repository at this point in the history
  • Loading branch information
maelle committed Dec 20, 2016
1 parent 43ec3c3 commit 4932405
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 27 deletions.
32 changes: 7 additions & 25 deletions docs/articles/forecast.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified docs/articles/forecast_files/figure-html/unnamed-chunk-2-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions vignettes/forecast.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ For Christmas I'll travel to Marseille. What temperatures should I expect there?

The name of the network for France is "FR__ASOS". I already know there's only one airport near the city.

```{r, cache = FALSE}
```{r, cache = FALSE, message = FALSE, warning = FALSE}
library("riem")
library("dplyr")
france_airports <- riem_stations(network = "FR__ASOS")
Expand All @@ -29,7 +29,7 @@ marseilles_airport
We'll transform it to daily average, and convert Fahrenheit to Celsius thanks to the `weathermetrics` package. We impute the missing values and remove outliers via the use of `forecast::tsclean`.


```{r, cache = FALSE, fig.width=8, fig.height=6}
```{r, cache = FALSE, fig.width=8, fig.height=6, message = FALSE, warning = FALSE}
marseille <- riem_measures(station = marseilles_airport$id,
date_start = "2010 01 01")
Expand Down

0 comments on commit 4932405

Please sign in to comment.