Nothing
# Example data come from TraMineR
library(TraMineR)
# biofam data set
data(biofam)
# We use only a sample of 300 cases
set.seed(10)
biofam <- biofam[sample(nrow(biofam), 300), ]
biofam.lab <- c(
"Parent", "Left", "Married", "Left+Marr",
"Child", "Left+Child", "Left+Marr+Child", "Divorced"
)
biofam.seq <- seqdef(biofam, 10:25, labels = biofam.lab, weights = biofam$wp00tbgs)
biofam2.seq <- seqdef(biofam, 10:25, labels = biofam.lab)
group <- biofam$sex
group_labelled <- haven::labelled(c(1, 1, 2, 2, 1, 2),
labels = c("Male" = 1, "Female" = 2))
data <- data.frame(
id = 1:6,
group = c(1L, 1L, 1L, 1L, 2L, 2L),
state1 = c("a", "b", "a", "a", "b", "c"),
state2 = c("c", "a", "c", "b", NA, NA),
state3 = c("b", "b", "c", NA, NA, NA)
)
short.seq <- seqdef(data, 3:5)
short.group <- data$group
data(ex1)
ex1.seq <- seqdef(ex1, 1:13, weights = ex1$weights)
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test_that("arguments are specified correctly (length, type, ...)", {
expect_error(ggseqtrplot(biofam))
expect_error(ggseqtrplot(biofam.seq, labsize = 1:10))
expect_error(ggseqtrplot(biofam.seq, axislabs = "something"))
expect_error(ggseqtrplot(biofam.seq, group = group[1:100]))
expect_error(ggseqtrplot(biofam.seq, weighted = group))
expect_error(ggseqrfplot(biofam.seq, diss = diss, which.plot = "medods"))
})
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test_that("haven_labelled group is converted to factor with warning", {
expect_warning(ggseqtrplot(biofam.seq[1:6, ],
group = group_labelled))
})
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test_that("check if output of ggseqtrplot is ggplot", {
expect_s3_class(ggseqtrplot(biofam.seq), "ggplot")
expect_s3_class(ggseqtrplot(biofam2.seq), "ggplot")
expect_s3_class(ggseqtrplot(biofam.seq, axislabs = "alphabet"), "ggplot")
expect_s3_class(ggseqtrplot(biofam.seq, dss = FALSE), "ggplot")
expect_s3_class(ggseqtrplot(biofam.seq, group = group), "ggplot")
expect_s3_class(ggseqtrplot(biofam.seq,
group = biofam$sex, dss = FALSE), "ggplot")
expect_s3_class(ggseqtrplot(ex1.seq, weighted = FALSE), "ggplot")
expect_s3_class(ggseqtrplot(ex1.seq, with.missing = TRUE), "ggplot")
expect_s3_class(ggseqtrplot(ex1.seq, no.n = TRUE), "ggplot")
})
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test_that("error when sequence length is too short", {
expect_error(ggseqtrplot(short.seq[5:6,]))
expect_error(ggseqtrplot(short.seq[5:6,], dss = FALSE))
expect_error(ggseqtrplot(short.seq, group = short.group))
expect_error(ggseqtrplot(short.seq, group = short.group, dss = FALSE))
})
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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.