# this is to keep the old S3 behaviour inside the NAMESPACE.
is = function(x, class) {
if (identical(class, "double"))
is.double(x)
else if ("double" %in% class)
any(class(x) %in% class) || is.double(x)
else
any(class(x) %in% class)
}#IS
# get all the subsets of a given size, even if either the initial set
# or the subset are empty (i.e. of size zero).
# Slightly modified version of the combinations() function from
# the gtools package. This is the copyroght notice:
## From email by Brian D Ripley <ripley@stats.ox.ac.uk> to r-help
## dated Tue, 14 Dec 1999 11:14:04 +0000 (GMT) in response to
## Alex Ahgarin <datamanagement@email.com>. Original version was
## named "subsets" and was Written by Bill Venables.
# It's released under "LGPL 2.1".
subsets = function(n, r, v = 1:n, set = TRUE, repeats.allowed = FALSE) {
# allow empty subsets (i.e. subsets of empty sets).
if ((n == 0) || (r == 0)) return(matrix(c(""), 1, 1))
if (mode(n) != "numeric" || length(n) != 1 || n < 1 || (n %% 1) != 0)
stop("bad value of n")
if (mode(r) != "numeric" || length(r) != 1 || r < 1 || (r %% 1) != 0)
stop("bad value of r")
if (!is.atomic(v) || length(v) < n)
stop("v is either non-atomic or too short")
if ((r > n) & repeats.allowed == FALSE)
stop("r > n and repeats.allowed = FALSE")
if (set) {
v = unique(sort(v))
if (length(v) < n)
stop("too few different elements")
}#THEN
v0 = vector(mode(v), 0)
if (repeats.allowed) {
sub = function(n, r, v) {
if (r == 0)
v0
else if (r == 1)
matrix(v, n, 1)
else if (n == 1)
matrix(v, 1, r)
else rbind(cbind(v[1], Recall(n, r - 1, v)), Recall(n - 1, r, v[-1]))
}#SUB
}#THEN
else {
sub = function(n, r, v) {
if (r == 0)
v0
else if (r == 1)
matrix(v, n, 1)
else if (r == n)
matrix(v, 1, n)
else rbind(cbind(v[1], Recall(n - 1, r - 1, v[-1])), Recall(n - 1, r, v[-1]))
}#SUB
}#ELSE
sub(n, r, v[1:n])
}#SUBSETS
# return the array whose size is smaller.
smaller = function(a, b) {
if (length(a) < length(b))
return(a)
else
return(b)
}#SMALLER
# build an array containing the configurations of the variables.
configurations = function(data, factor = TRUE, all = TRUE) {
.Call("cfg2",
data = data,
factor = factor,
all = all)
}#CONFIGURATIONS
# rbind-like function for arc sets.
arcs.rbind = function(matrix1, matrix2, reverse2 = FALSE) {
.Call("arcs_rbind1",
matrix1 = matrix1,
matrix2 = matrix2,
reverse2 = reverse2)
}#ARCS.RBIND
minimal.data.frame = function(lst) {
.Call("minimal_data_frame",
obj = lst)
}#MINIMAL.DATA.FRAME
minimal.data.frame.column = function(dataframe, column, drop = TRUE) {
.Call("dataframe_column",
dataframe = dataframe,
column = column,
drop = drop)
}#MINIMAL.DATA.FRAME.COLUMN
minimal.qr.matrix = function(dataframe, column) {
.Call("qr_matrix",
dataframe = dataframe,
column = column)
}#MINIMAL.QR.MATRIX
# flatten 2-dimensional 1xc tables.
flatten.2d.table = function(x) {
x = as.table(structure(c(x), names = colnames(x)))
names(dimnames(x)) = ""
return(x)
}#FLATTEN.2D.TABLE
# explode an unevaluated expression into a character vector.
explode = function(x) {
if (is.list(x) || is.data.frame(x))
return(names(x))
else if (identical(x, TRUE))
return(character(0))
else
l = as.list(x)
repeat {
if(!any(sapply(l, is.recursive)))
break
else
l = unlist(lapply(l, as.list))
}#REPEAT
return(sapply(l, as.character))
}#EXPLODE
# normalize a conditional probability table.
normalize.cpt = function(x) {
.Call("normalize_cpt",
cpt = x)
}#NORMALIZE.CPT
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.