Nothing
test_that( 'tau bound error', {
#given
points2 <- rbind(c(0,0), c(0,1), c(1,0))
points3 <- rbind(c(0,1,0), c(1,0,1), c(1,1,0), c(0,1,1))
points4 <- cbind(points3, c(1,0,1,0))
empty_complex = list()
complex_edges_2 = append(as.list(1:3), list(c(1,2), c(2,3), c(1,3)))
#when
points_null1 <- matrix(nrow=0, ncol=3)
points_null2 <- matrix(nrow=3, ncol=0)
vNA = rbind(c(1,NA,0), c(0,1,1))
vNull = matrix(0, nrow=0, ncol=3)
eNA = rbind(c(1,NA), c(1,2))
#then
expect_error(tau_bound(vNA, complex_edges_2))
expect_error(tau_bound(rbind(c(1,1,1,1), c(2,2,2,2)), complex_edges_2))
expect_error(tau_bound(vNull, empty_complex))
expect_error(tau_bound(rbind(c(1,1,1)), list(1)))
expect_error(tau_bound(points2, complex_edges_2, extremes = 1:10))
expect_error(tau_bound(points2, empty_complex))
expect_error(tau_bound(points3, complex_edges_2))
expect_error(tau_bound(points4, complex_edges_2))
expect_error(tau_bound(points2, complex_edges_2, sumstat="bloop"))
expect_error(circ_face_2D(points4))
expect_error(circ_face_3D(points4))
expect_error(circ_tet_3D(points2))
expect_error(extreme_pts(complex_edges2, n_vert=3, dimension=6))
}
)
test_that( 'tau bound', {
#given
points2 <- rbind(c(0,0), c(0,1), c(1,0))
points3 <- rbind(c(0,1,0), c(1,0,1), c(1,1,0), c(0,1,1))
complex_iso_2 = as.list(1:3)
complex_iso_3 = as.list(1:4)
complex_1_iso = append(as.list(1:3), list(c(1,2)))
complex_edges_2 = append(as.list(1:3), list(c(1,2), c(2,3), c(1,3)))
complex_face_2 = append(as.list(1:3), list(c(1,2), c(2,3), c(1,3), c(1,2,3)))
complex_edges_3 = append(as.list(1:4), list(c(1,2), c(1,3), c(1,4), c(2,3),
c(2,4), c(3,4)))
complex_face_3 = append(as.list(1:4), list(c(1,2), c(1,3), c(1,4), c(2,3),
c(2,4), c(3,4), c(1,2,3), c(1,3,4),
c(1,2,4), c(2,3,4)))
complex_tet_3 = append(as.list(1:4), list(c(1,2), c(1,3), c(1,4), c(2,3),
c(2,4), c(3,4), c(1,2,3), c(1,3,4),
c(1,2,4), c(2,3,4), c(1,2,3,4)))
#then
expect_equal(tau_bound(points2, complex_iso_2), 1)
expect_equal(tau_bound(points3, complex_iso_3), 1)
expect_equal(tau_bound(points2, complex_1_iso), mean(c(1,1,sqrt(2)))) #avg of 1, 1, and sqrt(2) for mean, 1 for min
expect_equal(tau_bound(points2, complex_1_iso, sumstat="min"), min(c(1,1,sqrt(2))))
expect_equal(tau_bound(points2, complex_1_iso, sumstat="max"), max(c(1,1,sqrt(2))))
expect_equal(tau_bound(points2, complex_1_iso, sumstat="median"), median(c(1,1,sqrt(2))))
expect_equal(tau_bound(points2, complex_edges_2), mean(c(1,sqrt(2),sqrt(2)))) #1 for min, avg of 1,sqrt(2),sqrt(2) for mean
expect_equal(tau_bound(points3, complex_edges_3), mean(c(sqrt(2),sqrt(3),sqrt(3),sqrt(2)))) #sqrt(2) for min
expect_equal(tau_bound(points2, complex_face_2), sqrt(2))
expect_equal(tau_bound(points3, complex_face_3), sqrt(3))
expect_equal(tau_bound(points3, complex_tet_3), sqrt(3))
expect_equal(count_neighbors(points2, complex_edges_2), c(2,2,2))
}
)
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.