Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/debruine/faux
R functions for simulating factorial datasets
https://github.com/debruine/faux
data simulation
Last synced: 5 days ago
JSON representation
R functions for simulating factorial datasets
- Host: GitHub
- URL: https://github.com/debruine/faux
- Owner: debruine
- License: other
- Created: 2018-12-29T11:43:04.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-01-17T13:55:39.000Z (21 days ago)
- Last Synced: 2025-01-26T07:07:04.447Z (12 days ago)
- Topics: data, simulation
- Language: R
- Homepage: https://debruine.github.io/faux/
- Size: 137 MB
- Stars: 97
- Watchers: 7
- Forks: 15
- Open Issues: 2
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
---
output: github_document
always_allow_html: true
---[![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)```{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.