Nothing
test_that("function correctly wrangles phi matrix into data frame", {
#simulate data
SL<- matrix(runif(500*35), 500, 35)
seq1<- seq(1, by = 7, length.out = 5)
for (i in 0:6) {
tmp<- t(apply(SL[,(seq1+i)], 1, function(x) x/sum(x)))
SL[,(seq1+i)]<- tmp
}
TA<- matrix(runif(500*56), 500, 56)
seq1<- seq(1, by = 7, length.out = 8)
for (i in 0:6) {
tmp<- t(apply(TA[,(seq1+i)], 1, function(x) x/sum(x)))
TA[,(seq1+i)]<- tmp
}
phi<- list(SL, TA)
res<- list(phi = phi)
#run function (for segmentation/LDA)
behav.res<- get_behav_hist(dat = res, nburn = 250, ngibbs = 500, nmaxclust = 7,
var.names = c("Step Length","Turning Angle"))
tmp_SL<- behav.res[behav.res$behav == 1 & behav.res$var == "Step Length", "prop"]
tmp_TA<- behav.res[behav.res$behav == 1 & behav.res$var == "Turning Angle", "prop"]
expect_equal(sum(dplyr::pull(tmp_SL, prop)), 1)
expect_equal(sum(dplyr::pull(tmp_TA, prop)), 1)
expect_equal(nrow(behav.res), 35+56)
})
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.