yhoriuchi / projoint

A package for a more general, more straightforward, and more creative conjoint analysis
https://yhoriuchi.github.io/projoint/
Other
10 stars 0 forks source link
amce conjoint conjoint-analysis conjoint-experiments conjoint-survey-experiments marginal-means measurement-error r

projoint

The One-Stop Conjoint Shop


projoint is a general-purpose R package for conjoint analysis. It produces more reliable estimates of all relevant quantities of interest, after correcting measurement error bias and other problems discussed in the literature. Furthermore, it also implements a more general framework than other approaches, so that researchers can answer a much wider range of substantively important questions.

Installation

You can install the development version of projoint from GitHub with:

# install.packages("devtools")
devtools::install_github("yhoriuchi/projoint")

Example

# Load the projoint package
library(projoint)

# Reshape data for conjoint analysis
# This example includes the repeated task.
data <- reshape_projoint(exampleData1, 
                         c(paste0("choice", 1:8), "choice1_repeated_flipped"))

# Run conjoint analysis
output <- projoint(data)

# Make a figure
plot(output)

# Show the estimated quantities of interest
summary(output)

Relevant Article

Our framework and methods can be found in this paper:

Join Our Projoint Community

We encourage you to join our Projoint Community by making a GitHub account, subscribing to our Announcements, and actively joining Discussions. We encourage you to post questions, suggest for improvement, and share your research findings using our software. For any problem you find, please report your issue to Issues.

Notes