Skip to content

Instantly share code, notes, and snippets.

@gomesfellipe
Created September 13, 2019 04:29
Show Gist options
  • Save gomesfellipe/86af044b4e8a874756a2f4c379cfc01b to your computer and use it in GitHub Desktop.
Save gomesfellipe/86af044b4e8a874756a2f4c379cfc01b to your computer and use it in GitHub Desktop.
Script para produção de relatórios automáticos
---
title: "Gapminder: Relatorio Automático"
autor: "Fellipe Gomes"
output: pdf_document
---
```{r setup_master, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
```{r, include=F, echo=F}
out = NULL
for (i in 11:1){
out = c(out, knit_child('gapminder_automatico_child.Rmd'))
}
```
`r paste(out, collapse='\n')`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment