-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathREADME.Rmd
More file actions
69 lines (48 loc) · 2.61 KB
/
README.Rmd
File metadata and controls
69 lines (48 loc) · 2.61 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
warning = FALSE,
message = FALSE,
comment = "#>",
fig.path = "man/figures/README-",
fig.retina = 3
)
```
# cbcTools <a href='https://jhelvy.github.io/cbcTools/'><img src='man/figures/logo.png' align="right" style="height:139px;" alt="cbcTools package logo: blue hexagonal badge with 'cbcTools' text and three bullet points representing choice options"/></a>
<!-- badges: start -->
[](https://CRAN.R-project.org/package=cbcTools)
[](https://cran.r-project.org/package=cbcTools)
<!-- badges: end -->
This package provides functions for generating and inspecting survey designs for **choice-based conjoint** (CBC) survey experiments in R. Each function in the package begins with `cbc_` and supports a step in the following process for designing and analyzing survey experiments:

After installing the package, got to the [Getting Started](https://jhelvy.github.io/cbcTools/articles/getting-started.html) page to learn how to use the package.
## 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("pak")
pak::pak("jhelvy/cbcTools")
```
Load the package with:
```{r, eval=FALSE}
library(cbcTools)
```
## Alternatives
The **cbcTools** package is an open-source alternative to commercial design software such as [Ngene](https://www.choice-metrics.com/) and Sawtooth Software. Other open-source conjoint experiment design packages include [idefix](https://www.jstatsoft.org/article/view/v096i03) and [spdesign](https://spdesign.edsandorf.me/).
## 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")
```