Learn R Programming

cjoint (version 2.1.1)

japan2014conjoint: Japan 2014 Conjoint Experiment Dataset from Horiuchi et. al. (2014)

Description

A dataset containing the results of a conjoint survey of a representative sample of Japanese adults who were asked to choose which of two parties (with specified policy manifestos) they would support in the 2014 House of Representatives general election. Each row corresponds to a single profile presented to the respondent. See the original replication archive (Horiuchi et. al. 2014) for more detailed descriptions.

Usage

data("japan2014conjoint")

Arguments

Format

A data frame with 20,360 observations on the following 11 variables.

respondent

a character vector uniquely identifying the respondent

respondentIndex

a numeric vector uniquely indexing the respondent

task

a numeric vector indexing the task presented to the respondent

profile

a numeric vector indexing the profile presented to the respondent

selected

a numeric vector indicating whether the profile was selected

Consumption tax

a factor indicating the profile position on `Consumption Tax`

Consumption tax.rowpos

a numeric vector indicating which row the attribute `Consumption Tax` appeared in the given profile

Employment

a factor indicating the profile position on `Employment`

Employment.rowpos

a numeric vector indicating which row the attribute `Employment` appeared in the given profile

Monetary and fiscal policy

a factor indicating the profile position on `Monetary and Fiscal Policy`

Monetary and fiscal policy.rowpos

a numeric vector indicating which row the attribute `Monetary and Fiscal Policy` appeared in the given profile

Economic growth strategy

a factor indicating the profile position on `Economic Growth Strategy`

Economic growth strategy.rowpos

a factor indicating which row the attribute `Economic Growth Strategy` appeared in the given profile

Nuclear power

a factor indicating the profile position on `Nuclear Power`

Nuclear power.rowpos

a factor indicating which row the attribute `Nuclear Power` appeared in the given profile

TPP

a factor indicating the profile position on `Trans-Pacific Partnership (TPP)`

TPP.rowpos

a factor indicating which row the attribute `Trans-Pacific Partnership (TPP)` appeared in the given profile

Collective self-defense

a factor indicating which row the attribute `Collective Self-Defense` appeared in the given profile

Collective self-defense.rowpos

a factor indicating which row the attribute `Collective Self-Defense` appeared in the given profile

Constitutional revision

a factor indicating the profile position on `Constitutional Revision`

Constitutional revision.rowpos

a factor indicating which row the attribute `Constitutional Revision` appeared in the given profile

National assembly seat reduction

a factor indicating the profile position on `National Assembly Seat Reduction`

National assembly seat reduction.rowpos

a factor indicating which row the attribute `National Assembly Seat Reduction` appeared in the given profile

wgt

post-stratification weights to map the survey sample to the census population

Examples

Run this code
data("japan2014conjoint")

# Run AMCE estimator using all attributes and uniform design
results <- amce(selected ~ `Consumption tax` + `Employment` + `Monetary and fiscal policy` + 
                  `Economic growth strategy` + `Nuclear power` + `TPP` + 
                  `Collective self-defense` + `Constitutional revision` + 
                  `National assembly seat reduction`,  data=japan2014conjoint, cluster=TRUE, 
                  respondent.id="respondentIndex", weights="wgt", design="uniform")

Run the code above in your browser using DataLab