Communicating with Data in the Tidyverse
Timo Grossenbacher
Data Journalist
--- title: "The reduction in weekly working hours in Europe" subtitle: "Looking at the development between 1996 and 2006" author: "Timo Grossenbacher" output: html_document: theme: cosmo highlight: monochrome toc: true toc_float: false toc_depth: 4 code_folding: hide css: styles.css
df_print: kable ---
df_print: paged
---
# Some summary statistics ilo_data %>% filter(country == "Switzerland" & year > 2000) %>%
knitr::kable()
<table>
<thead>
...
</thead>
<tbody>
...
</tbody>
</table>
<table>
<thead>
<tr>
...
</tr>
</thead>
<tbody>
<tr>
...
</tr>
<tr>
...
</tr>
</tbody>
</table>
<table>
<thead>
<tr>
<th>Column 1</th><th>Column 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Cell 1</td><td>Cell 2</td>
</tr>
<tr>
...
</tr>
</tbody>
</table>
Communicating with Data in the Tidyverse