The best way is with the package rmarkdown
. See also R Markdown.
Record a text file so_pt.Rmd
(or otherwise, keep the extension) with the following content.
---
title: "so_pt"
author: "Rui Barradas"
date: "28/01/2021"
output: pdf_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
## R Markdown
Isto é um documento R Markdown. Markdown é uma sintaxe de formatação simples para HTML, PDF e documentos MS Word. Veja R Markdown <http://rmarkdown.rstudio.com> para mais detalhes.
Este documento serve para responder a uma pergunta do StackOverflow em Português.
No código abaixo, substituir a instrução `fat2.dbc` pela instrução da pergunta.
```{r}
library(ExpDes.pt)
data(ex5)
anova1 <- with(ex5,
fat2.dbc(trat, genero, bloco, sabor, quali = c(TRUE, TRUE),
mcomp="lsd", fac.names=c("Amostras", "Genero"),
sigT = 0.05, sigF = 0.05)
)
```
A variável `anova1` tem a seguinte estrutura.
```{r}
str(anova1)
```
Os dois `data.frame` podem ser vistos assim:
```{r results='asis'}
library(knitr)
library(xtable)
print(
xtable(anova1$medias.fator1),
floating = FALSE,
include.rownames = FALSE,
comment = FALSE
)
print(
xtable(anova1$medias.fator2),
floating = FALSE,
include.rownames = FALSE,
comment = FALSE
)
```