Nothing
# Test for slpLMSnet
## Inverse base rate effect with one participant
context("slpLMSnet")
load("../data/test_slpLMSnet.RData") # Load cor.out, str, and tr.
st.copy <- st
tr.copy <- tr
out <- slpLMSnet(st, data.matrix(tr))
test_that("slpLMSnet reproduces IBRE simulation.", {
expect_equal(out$connectionWeightMatrix, cor.out)
})
## Below guards against common RCpp error.
test_that("slpLMSnet does not change st, tr.", {
expect_equal(st.copy, st)
expect_equal(tr.copy, tr)
})
out_dec <- slpLMSnet(st, data.matrix(tr), dec = "softmax")
test_that("slpLMSnet softmax options reproducues IBRE simulation.", {
expect_equal(out_dec$p, cor.softmax)
})
## Generating code
##st <- list(beta = 0.025, theta = 1, bias = 0,
## w = matrix(rep(0, 6*4), nrow = 4, ncol = 6), outcomes = 4,
## colskip = 3)
##tr <- krus96train(subjs = 1, ctxt = FALSE)
##out <- slpLMSnet(st, data.matrix(tr))
##cor.out <- out$connectionWeightMatrix
##save(cor.out,st,tr,file='test_slpLMSnet.RData')
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.