Nothing
test_that("get_count_table returns the count table", {
cutoff <- 0.2
# With Normal Count Table
count_table <- read_count(test_path("extdata", "amazon.count_table"))
distance_data <- read_dist(test_path("extdata", "amazon_column.dist"),
count_table, cutoff, FALSE)
expect_true(all(get_count_table(distance_data) == count_table))
# With Sparse Count Table
count_table_sparse <- read_count(test_path("extdata",
"amazon.sparse.count_table"))
distance_data <- read_dist(test_path("extdata", "amazon_column.dist"),
count_table_sparse, cutoff, FALSE)
expect_true(all(get_count_table(distance_data) == count_table_sparse))
# Expect Error with proper parameter
expect_error(get_count_table(""))
})
test_that("get_distance_df returns a dataframe of the distances", {
cutoff <- 0.2
count_table <- read_count(test_path("extdata", "amazon.count_table"))
distance_data <- read_dist(test_path("extdata", "amazon_column.dist"),
count_table, cutoff, FALSE)
distances <- get_distance_df(distance_data)
expect_true("data.frame" %in% class(distances))
expect_true(nrow(distances) == 475)
expect_true(ncol(distances) == 3)
# Expect Error with proper parameter
expect_error(get_distance_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.