Nothing
# tests of whethed the case-control sampled versions of tomstats yields the same stats are the full analysis
# for the sampled dyads.
# here this is tested a dyadic ("tie") model with manual riskset, directed events, time-sensitive (not ordinal) model
# memroy decay
# with event types
# manual riskset
data(history, package = "remstats")
data(info, package = "remstats")
# add some events happening in same interval
history$time[7:8] <- history$time[9]
history[4,] <- history[5,]
history <- history[1:22,]
colnames(history)[4] <- "type"
# take subset for test
start1 <- 2
stop1 <- 18
check_sampled_equals_full <- function(effects,
samp_num = 5L,
seed = 1L,
tol = 1e-12,
attr_dyads = NULL) {
reh <- remify(edgelist = history, model = "tie", riskset = "manual", directed = FALSE,
manual_riskset = history[,2:3])
ts_samp <- tomstats(
effects, reh = reh, attr_actors = info, attr_dyads = attr_dyads, memory = "decay", memory_value = 1000,
sampling = TRUE, samp_num = samp_num, seed = seed, first = start1, last = stop1
)
# reproducibility (same seed/args)
ts_samp2 <- tomstats(
effects, reh = reh, attr_actors = info, attr_dyads = attr_dyads, memory = "decay", memory_value = 1000,
sampling = TRUE, samp_num = samp_num, seed = seed, first = start1, last = stop1
)
expect_equal(ts_samp, ts_samp2, tol = tol)
expect_equal(attr(ts_samp, "sample_map"), attr(ts_samp2, "sample_map"))
ts_full <- tomstats(
effects, reh = reh, attr_actors = info, attr_dyads = attr_dyads, memory = "decay", memory_value = 1000,
sampling = FALSE, first = start1, last = stop1
)
sample_map <- attr(ts_samp, "sample_map")
expect_true(!is.null(sample_map))
riskset <- attr(ts_full, "riskset")
expect_true(!is.null(riskset))
#dyad_id <- as.integer(riskset[, ncol(riskset)])
#dyad_id_key <- if (min(dyad_id, na.rm = TRUE) == 0L) dyad_id else (dyad_id - 1L)
#col_index_by_dyad <- setNames(seq_along(dyad_id_key), dyad_id_key)
M <- dim(ts_samp)[1]
S <- dim(ts_samp)[2]
for (m in seq_len(M)) {
for (s in seq_len(S)) {
d <- as.integer(sample_map[m, s])
j <- d #unname(col_index_by_dyad[as.character(d)])
expect_true(!is.na(j))
expect_equal(
as.numeric(ts_samp[m, s, ]),
as.numeric(ts_full[m, j, ]),
tol = tol
)
x <- as.numeric(ts_samp[m, s, ])
y <- as.numeric(ts_full[m, j, ])
if (max(abs(x - y)) > tol) {
cat("FAIL at m=", m, " s=", s, " d=", d, " j=", j, "\n")
cat("samp:", paste(x, collapse=", "), "\n")
cat("full:", paste(y, collapse=", "), "\n")
break
}
}
}
invisible(TRUE)
}
effects_exo <- ~
same("sex", info) +
difference("age", info) +
average("extraversion", info) +
minimum("age", info) +
maximum("age", info)
# Optional: dyad covariates shipped with remstats (skip if not present)
dyad_cov_tests <- function() {
if (exists("both_male_wide", where = asNamespace("remstats"), inherits = FALSE)) {
data(both_male_wide, package = "remstats")
check_sampled_equals_full(
~ tie(variable = "both_male", attr_dyads = both_male_wide),
samp_num = samp_num, seed = seed, tol = tol,
attr_dyads = both_male_wide
)
}
if (exists("both_male_long", where = asNamespace("remstats"), inherits = FALSE)) {
data(both_male_long, package = "remstats")
check_sampled_equals_full(
~ tie(variable = "both_male", attr_dyads = both_male_long),
samp_num = samp_num, seed = seed, tol = tol,
attr_dyads = both_male_long
)
}
invisible(TRUE)
}
tests <- list(
inertia_recip = ~ inertia(),
degrees = ~ totaldegreeDyad() + degreeMin() + degreeMax() + degreeDiff(),
triads = ~ sp(),
recency = ~ recencyContinue(),
pshifts = ~ psABAY() + psABAB(),
exo_stats = effects_exo
)
for (nm in names(tests)) {
if (is.function(tests[[nm]])) {
tests[[nm]]()
} else {
check_sampled_equals_full(tests[[nm]])
}
}
# m <- 1
# dim(ts_samp)
# dim(ts_full)
# head(history)
# head(reh$edgelist_id)
# riskset[sample_map[m,],]
# ts_samp[m,,]
# ts_full[m,sample_map[m,],]
#
# exp(- (345 - 238) * log(2) / 1000) * 1.33
# exp(- (317 - 238) * log(2) / 1000) * 1.33
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.