-
Notifications
You must be signed in to change notification settings - Fork 15
/
README.Rmd
57 lines (42 loc) · 2.1 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
output: github_document
always_allow_html: true
---
# faux <a href="https://debruine.github.io/faux/"><img src="man/figures/logo.png" align="right" height="120" /></a>
<!-- rmarkdown v1 -->
<!-- README.md is generated from README.Rmd. Please edit that file -->
<!-- badges: start -->
[![DOI](https://zenodo.org/badge/163506566.svg)](https://zenodo.org/badge/latestdoi/163506566)
[![CRAN status](https://www.r-pkg.org/badges/version-last-release/faux)](https://CRAN.R-project.org/package=faux)
![Downloads](https://cranlogs.r-pkg.org/badges/grand-total/faux)
[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
[![Coverage status](https://codecov.io/gh/debruine/faux/branch/master/graph/badge.svg)](https://app.codecov.io/github/debruine/faux?branch=master)
[![R-CMD-check](https://github.com/debruine/faux/workflows/R-CMD-check/badge.svg)](https://github.com/debruine/faux/actions)
[![R-CMD-check](https://github.com/debruine/faux/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/debruine/faux/actions/workflows/R-CMD-check.yaml)
<!-- badges: end -->
```{r setup, include = FALSE}
knitr::opts_chunk$set(
fig.path = "man/figures/",
fig.width = 8,
fig.height = 5,
collapse = TRUE,
comment = "#>"
)
library(ggplot2)
library(dplyr)
library(tidyr)
library(faux)
set.seed(200)
```
It is useful to be able to simulate data with a specified structure. The `faux` package provides some functions to make this process easier. See the [package website](https://debruine.github.io/faux/) for more details.
## Installation
You can install the released version of faux from [CRAN](https://CRAN.R-project.org) with:
``` r
install.packages("faux")
```
And the development version from [GitHub](https://github.com/debruine/faux) with:
``` r
# install.packages("devtools")
devtools::install_github("debruine/faux")
```
Please note that the 'faux' project is released with a [Contributor Code of Conduct](https://github.com/debruine/faux/blob/master/CODE_OF_CONDUCT.md). By contributing to this project, you agree to abide by its terms.