Learn R Programming

hBayesDM (version 0.4.0)

ug_bayes: Norm-Training Ultimatum Game

Description

Hierarchical Bayesian Modeling of the Norm-Training Ultimatum Game using the following parameters: "alpha" (envy), "Beta" (guilt), "tau" (inverse temperature).

MODEL: Ideal Observer Model (Xiang et al., 2013, J Neuro)

Usage

ug_bayes(data = "choose", niter = 3000, nwarmup = 1000, nchain = 4,
  ncore = 1, nthin = 1, inits = "random", indPars = "mean",
  saveDir = NULL, email = NULL, modelRegressor = FALSE,
  adapt_delta = 0.95, stepsize = 1, max_treedepth = 10)

Arguments

data
A .txt file containing the data to be modeled. Data columns should be labelled as follows: "subjID", "offer", and "accept". See Details below for more information.
niter
Number of iterations, including warm-up.
nwarmup
Number of iterations used for warm-up only.
nchain
Number of chains to be run.
ncore
Integer value specifying how many CPUs to run the MCMC sampling on. Defaults to 1.
nthin
Every i == nthin sample will be used to generate the posterior distribution. Defaults to 1. A higher number can be used when auto-correlation within the MCMC sampling is high.
inits
Character value specifying how the initial values should be generated. Options are "fixed" or "random" or your own initial values.
indPars
Character value specifying how to summarize individual parameters. Current options are: "mean", "median", or "mode".
saveDir
Path to directory where .RData file of model output (modelData) can be saved. Leave blank if not interested.
email
Character value containing email address to send notification of completion. Leave blank if not interested.
modelRegressor
Exporting model-based regressors? TRUE or FALSE. Currently not available for this model.
adapt_delta
Floating point number representing the target acceptance probability of a new sample in the MCMC chain. Must be between 0 and 1. See Details below.
stepsize
Integer value specifying the size of each leapfrog step that the MCMC sampler can take on each new iteration. See Details below.
max_treedepth
Integer value specifying how many leapfrog steps that the MCMC sampler can take on each new iteration. See Details below.

Value

modelData A class "hBayesDM" object with the following components:
model
Character string with the name of the model ("ug_bayes").
allIndPars
"data.frame" containing the summarized parameter values (as specified by "indPars") for each subject.
parVals
A "list" where each element contains posterior samples over different model parameters.
fit
A class "stanfit" object containing the fitted model.
rawdata
"data.frame" containing the raw data used to fit the model, as specified by the user.

Details

This section describes some of the function arguments in greater detail.

data should be assigned a character value specifying the full path and name of the file, including the file extension (e.g. ".txt"), that contains the behavioral data of all subjects of interest for the current analysis. The file should be a tab-delimited text (.txt) file whose rows represent trial-by-trial observations and columns represent variables. For the Norm-Training Ultimatum Game, there should be three columns of data with the labels "subjID", "offer", and "accept". It is not necessary for the columns to be in this particular order, however it is necessary that they be labelled correctly and contain the information below:

"subjID"
A unique identifier for each subject within data-set to be analyzed.
"offer"
An real value representing the offer made within the given trial (e.g., 10, 11, 4, etc..).
"accept"
A 1 or 0 indicating an offer was accepted or not (1 = accepted, 0 = rejected).

*Note: The data.txt file may contain other columns of data (e.g. "Reaction_Time", "trial", etc.), but only the data with the column names listed above will be used for analysis/modeling. As long as the columns above are present and labelled correctly, there is no need to remove other miscellaneous data columns.

nwarmup is a numerical value that specifies how many MCMC samples should not be stored upon the beginning of each chain. For those familiar with Bayesian methods, this value is equivalent to a burn-in sample. Due to the nature of MCMC sampling, initial values (where the sampling chain begins) can have a heavy influence on the generated posterior distributions. The nwarmup argument can be set to a high number in order to curb the effects that initial values have on the resulting posteriors.

nchain is a numerical value that specifies how many chains (i.e. independent sampling sequences) should be used to draw samples from the posterior distribution. Since the posteriors are generated from a sampling process, it is good practice to run multiple chains to ensure that a representative posterior is attained. When sampling is completed, the multiple chains may be checked for convergence with the plot(myModel, type = "trace") command. The chains should resemble a "furry caterpillar".

nthin is a numerical value that specifies the "skipping" behavior of the MCMC samples being chosen to generate the posterior distributions. By default, nthin is equal to 1, hence every sample is used to generate the posterior.

Contol Parameters: adapt_delta, stepsize, and max_treedepth are advanced options that give the user more control over Stan's MCMC sampler. The Stan creators recommend that only advanced users change the default values, as alterations can profoundly change the sampler's behavior. Refer to Hoffman & Gelman (2014, Journal of Machine Learning Research) for more information on the functioning of the sampler control parameters. One can also refer to section 58.2 of the http://mc-stan.org/documentation/ for a less technical description of these arguments.

References

Hoffman, M. D., & Gelman, A. (2014). The No-U-turn sampler: adaptively setting path lengths in Hamiltonian Monte Carlo. The Journal of Machine Learning Research, 15(1), 1593-1623.

Xiang, T., Lohrenz, T., & Montague, P. R. (2013). Computational Substrates of Norms and Their Violations during Social Exchange. Journal of Neuroscience, 33(3), 1099-1108. http://doi.org/10.1523/JNEUROSCI.1642-12.2013

See Also

We refer users to our in-depth tutorial for an example of using hBayesDM: https://rpubs.com/CCSL/hBayesDM

Examples

Run this code
## Not run: ------------------------------------
# # Run the model and store results in "output"
# output <- ug_bayes(data = "example", niter = 2000, nwarmup = 1000, nchain = 3, ncore = 3)
# 
# # Visually check convergence of the sampling chains (should like like 'hairy caterpillars')
# plot(output, type = 'trace')
# 
# # Check Rhat values (all Rhat values should be less than or equal to 1.1)
# rhat(output)
# 
# # Plot the posterior distributions of the hyper-parameters (distributions should be unimodal)
# plot(output)
# 
# # Show the WAIC and LOOIC model fit estimates 
# printFit(output)
## ---------------------------------------------

Run the code above in your browser using DataLab