-
Notifications
You must be signed in to change notification settings - Fork 5
/
README.Rmd
67 lines (47 loc) · 1.86 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
57
58
59
60
61
62
63
64
65
66
67
---
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;"/></a>
<!-- badges: start -->
[![CRAN
status](https://www.r-pkg.org/badges/version/cbcTools)](https://CRAN.R-project.org/package=cbcTools)
[![](http://cranlogs.r-pkg.org/badges/grand-total/cbcTools?color=blue)](https://cran.r-project.org/package=cbcTools)
<!-- badges: end -->
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:
![](man/figures/program_diagram.png)
# 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")
```