mirror of https://github.com/msberends/AMR.git
26 lines
673 B
Plaintext
26 lines
673 B
Plaintext
|
---
|
||
|
title: "Using AMR with other packages: AMR & dplyr/tidyverse"
|
||
|
output:
|
||
|
rmarkdown::html_vignette:
|
||
|
toc: true
|
||
|
toc_depth: 3
|
||
|
vignette: >
|
||
|
%\VignetteIndexEntry{How to conduct AMR data analysis}
|
||
|
%\VignetteEncoding{UTF-8}
|
||
|
%\VignetteEngine{knitr::rmarkdown}
|
||
|
editor_options:
|
||
|
chunk_output_type: console
|
||
|
---
|
||
|
|
||
|
```{r setup, include = FALSE, results = 'markup'}
|
||
|
knitr::opts_chunk$set(
|
||
|
warning = FALSE,
|
||
|
collapse = TRUE,
|
||
|
comment = "#>",
|
||
|
fig.width = 7.5,
|
||
|
fig.height = 5
|
||
|
)
|
||
|
```
|
||
|
|
||
|
This page will be updated shortly, to give explicit examples of how to work ideally with the `AMR` package, for those who are used to working in `dplyr` or other tidyverse packages.
|