Skip to content

Commit

Permalink
tiny style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Nowosad committed May 2, 2021
1 parent 660fbdf commit b853f60
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vignettes/getstarted.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Summary of stations available in Ogimet repository for a selected country:

``` {r stations, eval=T, fig.width=7, fig.height=7, fig.fullwidth=T}
library(climate)
PL = stations_ogimet(country ="Poland", add_map = TRUE)
PL = stations_ogimet(country = "Poland", add_map = TRUE)
head(PL)
```

Expand Down Expand Up @@ -142,11 +142,11 @@ kable(head(df2,10), caption = "Examplary data frame of sounding preprocessing")
### Example 5
Preparing an annual summary of air temperature and precipitation, processing with **dplyr**

```{r imgw_meteo, fig.width=7, fig.height=7, fig.fullwidth=TRUE}
```{r imgw_meteo, fig.width=7, fig.height=7, fig.fullwidth=TRUE, error=TRUE}
library(climate)
library(dplyr)
df = meteo_imgw(interval = 'monthly', rank='synop', year = 1991:2019, station = "SZCZECIN")
df = meteo_imgw(interval = "monthly", rank = "synop", year = 1991:2019, station = "ŁEBA")
# please note that sometimes 2 names are used for the same station in different years
df2 = select(df, station:t2m_mean_mon, rr_monthly)
Expand All @@ -164,7 +164,7 @@ colnames(monthly_summary) = month.abb
```

```{r imgw_meto2, echo=FALSE}
```{r imgw_meto2, echo=FALSE, error=TRUE}
library(knitr)
kable(head(monthly_summary), caption = "Examplary data frame of meteorological preprocessing.")
```
Expand Down

0 comments on commit b853f60

Please sign in to comment.