Skip to content
Snippets Groups Projects
Commit e55464c1 authored by Ben Anderson's avatar Ben Anderson
Browse files

fixed table to have survey year on LHS

parent b848aa20
No related branches found
No related tags found
No related merge requests found
......@@ -117,8 +117,8 @@ We have loaded `r format(nrow(MTUSW6survey_DT), big.mark=",",scientific=FALSE)`
```{r basicStats}
kable(caption = "Number of diaries per year",
table(droplevels(MTUSW6survey_DT$countrya), # removes unused countries
MTUSW6survey_DT$survey)
table(MTUSW6survey_DT$survey, droplevels(MTUSW6survey_DT$countrya) # removes unused countries
)
)
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment