https://github.com/jhelvy/cbctools
An R package with tools for designing choice based conjoint (cbc) survey experiments and conducting power analyses
https://github.com/jhelvy/cbctools
cbc conjoint design discrete-choice r rstats sawtooth survey
Last synced: 3 months ago
JSON representation
An R package with tools for designing choice based conjoint (cbc) survey experiments and conducting power analyses
- Host: GitHub
- URL: https://github.com/jhelvy/cbctools
- Owner: jhelvy
- License: other
- Created: 2021-12-27T15:19:08.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-29T22:07:21.000Z (7 months ago)
- Last Synced: 2024-10-29T23:37:01.434Z (7 months ago)
- Topics: cbc, conjoint, design, discrete-choice, r, rstats, sawtooth, survey
- Language: R
- Homepage: https://jhelvy.github.io/cbcTools/
- Size: 26.8 MB
- Stars: 6
- Watchers: 2
- Forks: 5
- Open Issues: 12
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- License: LICENSE
Awesome Lists containing this project
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
warning = FALSE,
message = FALSE,
comment = "#>",
fig.path = "man/figures/README-",
fig.retina = 3
)
```[](https://CRAN.R-project.org/package=cbcTools)
[](https://cran.r-project.org/package=cbcTools)Functions for designing surveys and conducting power analyses for choice-based conjoint survey experiments in R. Each function in the package begins with `cbc_` and supports a step in the following process for designing and analyzing surveys:

# Usage
View the [usage](https://jhelvy.github.io/cbcTools/articles/usage.html) page for details on how to use **cbcTools**.
# Installation
You can install the latest version of {cbcTools} from CRAN:
```r
install.packages("cbcTools")
```or you can install the development version of {cbcTools} from [GitHub](https://github.com/jhelvy/cbcTools):
```r
# install.packages("remotes")
remotes::install_github("jhelvy/cbcTools")
```Load the library with:
```{r, eval=FALSE}
library(cbcTools)
```# Author, Version, and License Information
- Author: *John Paul Helveston* https://www.jhelvy.com/
- Date First Written: *October 23, 2020*
- License: [MIT](https://github.com/jhelvy/cbcTools/blob/master/LICENSE.md)# Citation Information
If you use this package for in a publication, I would greatly appreciate it if you cited it - you can get the citation by typing `citation("cbcTools")` into R:
```{r}
citation("cbcTools")
```