Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/philchalmers/SimDesign
Structure for organizing Monte Carlo simulations in R
https://github.com/philchalmers/SimDesign
monte-carlo-simulation r simulation simulation-framework
Last synced: 3 months ago
JSON representation
Structure for organizing Monte Carlo simulations in R
- Host: GitHub
- URL: https://github.com/philchalmers/SimDesign
- Owner: philchalmers
- Created: 2015-08-16T17:28:57.000Z (about 9 years ago)
- Default Branch: main
- Last Pushed: 2024-04-12T19:17:58.000Z (7 months ago)
- Last Synced: 2024-04-14T00:38:59.706Z (7 months ago)
- Topics: monte-carlo-simulation, r, simulation, simulation-framework
- Language: R
- Homepage:
- Size: 96.1 MB
- Stars: 57
- Watchers: 7
- Forks: 15
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - philchalmers/SimDesign - Structure for organizing Monte Carlo simulations in R (R)
README
[![](http://www.r-pkg.org/badges/version/SimDesign)](https://www.r-pkg.org:443/pkg/SimDesign) [![](http://cranlogs.r-pkg.org/badges/grand-total/SimDesign)](https://CRAN.R-project.org/package=SimDesign)
# SimDesign
Structure for Organizing Monte Carlo Simulation Designs
## Installation
To install the latest stable version of the package from CRAN, please use the following in your R console:
```r
install.packages('SimDesign')
```To install the Github version of the package with `devtools`, type the following (assuming you have already installed the `devtools` package from CRAN).
```r
library('devtools')
install_github('philchalmers/SimDesign')
```## Getting started
For a discription pertaining to the philosophy and general workflow of the package it is helpful to first read through the following: [Chalmers, R. Philip, Adkins, Mark C. (2020) Writing Effective and Reliable Monte Carlo Simulations with the SimDesign Package, The Quantitative Methods for Psychology, 16(4), 248-280. doi: 10.20982/tqmp.16.4.p248](https://www.tqmp.org/RegularArticles/vol16-4/p248/index.html)
Coding examples found within this article range from relatively simple (e.g., a re-implementation of one of [Hallgren's (2013) simulation study examples](https://www.tqmp.org/RegularArticles/vol09-2/p043/index.html), as well as possible extensions to the simulation design) to more advanced real-world simulation experiments (e.g., [Flora and Curran's (2004) simulation study](https://psycnet.apa.org/doiLanding?doi=10.1037%2F1082-989X.9.4.466)). For additional information and instructions about how to use the package please refer to the examples in the associated [Github wiki](https://github.com/philchalmers/SimDesign/wiki).