Nothing
`make.ix.mat` <-
function(data, xi = NULL, ...) {
# data, basic data.frame from diff scale experiment
# xi, in case some values not included as from 6pt ana.
if ( missing(xi) ) xi <- max(data)
nr <- nrow(data)
wts <- rep(c(1, -1, -1, 1), each = nr)
ix.mat <- matrix(0, ncol = xi, nrow = nr)
ix.mat[matrix(c(rep(1:nr, 4),
as.vector(unlist(data[, -data$resp]))), ncol = 2)] <- wts
dsInc.df <- data.frame(resp = data$resp, stim = ix.mat)
dsInc.df <- dsInc.df[, -2]
dsInc.df
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.