Beauchamp:MCG Predict: Difference between revisions

From OpenWetWare
Jump to navigationJump to search
Line 29: Line 29:


4. Run the setup code to make sure there are no errors
4. Run the setup code to make sure there are no errors
#Highlight lines 1 through 8 using the mouse (click and drag to highlight)
#Highlight lines 1 through 9 using the mouse (click and drag to highlight)
#Execute the code by using the R menu: Edit -> Execute
#Execute the code by using the R menu: Edit -> Execute



Revision as of 06:43, 4 December 2013

Estimating amounts of McGurk Fusion across Stimuli

System setup

  1. Install GNU R
  2. Download the MCG CODE zip file
  3. Extract the zip file to your Desktop/ or other preferred location

Data setup

The model code assumes the data are stored in a matrix format with rows as subjects and each column a separate stimulus. The first row is used as labels for the columns. Each cell stores the proportion of times the subject reported a fused perception for the given stimulus. If there are 20 subjects and 14 stimuli, the file will have 21 rows (1st row is header row) and 14 columns. See data.csv in the code pack for a sample of the data (full data available on request) used in Magnotti & Beauchamp.

If you are unfamiliar with R, the best approach is to run through all the model building steps using the included data.csv file, and then try with your own data.

Program setup

We need to ensure R can find the data and code files

1. Launch R

2. Open the file fit_model.R: File-> Open Document

3. We need to make 2 changes before running the code. See the comments in the code file for additional direction

Set the path to be the location of the downloaded files. If you extracted the code pack to your desktop, the path may already be correct

  setwd('~/Desktop/mcg_code_pack/')

Set the filename of the data to be fit. If you are using the example data, the filename is already correct

  mcg_data = read.csv(file='data.csv', row.names=NULL)

4. Run the setup code to make sure there are no errors

  1. Highlight lines 1 through 9 using the mouse (click and drag to highlight)
  2. Execute the code by using the R menu: Edit -> Execute

Fitting the model

Highlight and execute each of the following lines in turn

  cl = makeCluster(detectCores())
  
  # This takes about 12 seconds per repetition with 20 subjects and 14 stimuli
  # with more (or more variable) subjects, a large number of simulations is suggested (e.g., 256)
  mcg_model = optim.mcg(mcg_data, n.sim=8)

Model Parameters

You can obtain the model parameters for each subject using the getElement function applied to each subject

   thresholds = clip(sapply(mcg_model$subjs, getElement, 'cut'), -2, 2)
   noises = clip(sapply(mcg_model$subjs, getElement, 'sd'), 1e-6, 2)

Model Fit Statistics

You can obtain the model fit (RMSE) for each subject using the getElement function applied to each subject

   rmse = sapply(mcg_model$subjs, getElement, 'rmse')

Predicted Susceptibility Values

To obtain the actual and predicted fusion rates, use the predict function on each subejct

   # mean illusion percept
   pF.mean = colMeans(sapply(mcg_model$subjs, getElement, 'y'))
   #mean predicted percept
   pF.hat.mean = colMeans(sapply(mcg_model$subjs, predict, mcg_model$effs))

Save model output to a csv file

You can save all the model results to a csv file for further processing/graphing

   write.csv(cbind(noises, thresholds, rmse, pF.mean, pF.hat.mean), file='model_results.csv')

Advanced Functions

We mention here some other useful functions for those comfortable analyzing data with the R language. These functions assume you have run all the code in the previous section. Intrepid users are encouraged to let the source be their guide.

Load previously fitted models

If you have previously saved a model fit with save(...) you can load the model using load(...) load(file='mcg_model.RDATA') Once loaded, the variable will be in the current scope. Note that there is no explicit assignment with the load() function

Contact Information

If you run into trouble with any step, please contact me: john dot magnotti at gmail dot com. If the model fitting fails to converge for your dataset, you may need to send me at least a portion of the data so I can replicate the error.

Copyright/Licensing

http://i.creativecommons.org/l/by-sa/3.0/88x31.png

This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.

If you find this code useful, please cite our work:

Magnotti JF and Beauchamp MS (submitted). Individual Differences in Priors and Sensory Noise Explain Rates of McGurk Fusion Perception