Nothing
test_that("comb_all_data_model() works", {
testthat::expect_snapshot(comb_all_data_model(highd_data = scurve,
nldr_data = scurve_umap,
model_highd = scurve_model_obj$model_highd,
model_2d = scurve_model_obj$model_2d))
})
test_that("show_link_plots() works", {
if(interactive()) {
df_exe <- comb_all_data_model(highd_data = scurve, nldr_data = scurve_umap,
model_highd = scurve_model_obj$model_highd, model_2d = scurve_model_obj$model_2d)
edge_data <- scurve_model_obj$trimesh_data
crosstalk_obj <- show_link_plots(point_data = df_exe, edge_data = edge_data)
testthat::expect_s3_class(crosstalk_obj, "shiny.tag")
}
})
test_that("comb_all_data_model_error() works", {
model_error <- augment(highd_data = scurve, model_highd = scurve_model_obj$model_highd,
model_2d = scurve_model_obj$model_2d)
testthat::expect_snapshot(comb_all_data_model_error(highd_data = scurve,
nldr_data = scurve_umap,
model_highd = scurve_model_obj$model_highd,
model_2d = scurve_model_obj$model_2d,
error_data = model_error))
})
test_that("show_link_plots() works", {
if(interactive()) {
model_error <- augment(highd_data = scurve, model_highd = scurve_model_obj$model_highd,
model_2d = scurve_model_obj$model_2d)
df_exe <- comb_all_data_model_error(highd_data = scurve, nldr_data = scurve_umap,
model_highd = scurve_model_obj$model_highd, model_2d = scurve_model_obj$model_2d,
error_data = model_error)
edge_data <- scurve_model_obj$trimesh_data
crosstalk_obj <- show_error_link_plots(point_data = df_exe, edge_data = edge_data)
testthat::expect_s3_class(crosstalk_obj, "shiny.tag")
}
})
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.