Skip to content

Commit

Permalink
Merge pull request #10 from philsf/template
Browse files Browse the repository at this point in the history
Template
  • Loading branch information
philsf authored Jan 19, 2018
2 parents 3d02cd0 + 049c27c commit 671248f
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 0 deletions.
Binary file not shown.
75 changes: 75 additions & 0 deletions inst/rmarkdown/templates/Relatorio/skeleton/skeleton.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
---
title: "Análise Estatística de ..."
author: '**De:** Felipe Figueiredo **Para:** ___'
date: '**Data: ** dd/mm/aaaa'
output:
html_document:
fig_caption: yes
fig_height: 6
fig_width: 6
number_sections: yes
toc: yes
pdf_document:
number_sections: yes
toc: yes
word_document:
fig_caption: yes
fig_height: 6
fig_width: 6
reference_docx: misc/style.docx
toc: yes
subtitle: 'CÓDIGO: analise_dados_XX_aaaa'
toc-title: "Sumário"
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
knitr::opts_knit$set(root.dir = normalizePath(".."))
options(scipen = 999)
library(pander)
library(knitr)
library(philsfmisc)
```

---

**Histórico do documento**

```{r, echo = FALSE}
Version <- c("01")
Changes <- c("Versão inicial")
history <- cbind(Version, Changes)
colnames(history) <- c("Versão", "Alterações")
# pander(history, split.cells = 70)
kable(history)
```

---

# Lista de abreviaturas

# Introdução

## Objetivos

## Recepção e tratamento dos dados

# Metodologia

Esta análise foi realizada utilizando-se o software `R` versão `r getRversion()`.

<!-- The exact confidence intervals (CIs) of binomial proportions were calculated using package `exactci` (version `r packageVersion("exactci")`). -->

# Resultados

<!-- # Exceções e Desvios do teste -->

# Conclusões


# Referências

# Apêndice

4 changes: 4 additions & 0 deletions inst/rmarkdown/templates/Relatorio/template.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
name: Relatorio de consultoria de Bioestatistica
description: >
Template de relatório de análise de dados de Bioestatística (philsf-biostat@github).
create_dir: false

0 comments on commit 671248f

Please sign in to comment.