Nothing
## (GPL-3) Antonio Rivero Ostoic, multiplex@post.com
fltr <-
function (x, PO, ideal = FALSE, rclos)
{
if (isTRUE("Partial.Order" %in% attr(PO, "class")) == FALSE)
stop(paste(sQuote(deparse(substitute(PO))), " must be a ",
dQuote("Partial.Order"), " class object.", sep = ""))
if (is.null(dimnames(PO)[[1]]) == TRUE)
stop(paste("Dimnames in ", sQuote(deparse(substitute(PO))),
" are NULL.", sep = ""))
ifelse(missing(rclos) == FALSE && isTRUE(rclos == FALSE) ==
TRUE, rclos <- FALSE, rclos <- TRUE)
if (isTRUE(is.character(x) == TRUE) == TRUE) {
lbs <- dimnames(PO)[[1]]
ifelse(isTRUE(attr(PO, "class")[3] == ", ") == FALSE,
tmp <- jnt(unlist(strsplit(lbs, "}{", fixed = TRUE)),
sep = ",, "), tmp <- jnt(unlist(strsplit(lbs,
"} {", fixed = TRUE)), sep = ",, "))
tmp <- sub("{}{", "", dhc(tmp, sep = ",, "), fixed = TRUE)
tmp <- sub("}{}", "", dhc(tmp, sep = ",, "), fixed = TRUE)
tmp <- sub("{", "", dhc(tmp, sep = ",, "), fixed = TRUE)
tmp <- sub("}", "", dhc(tmp, sep = ",, "), fixed = TRUE)
tmp <- dhc(tmp, sep = attr(PO, "class")[3])
if (isTRUE(length(tmp) != length(unique(tmp))) == TRUE)
stop(paste(sQuote(deparse(substitute(PO))), " must be in a reduced form.",
sep = ""))
ifelse(all(x %in% tmp) == FALSE, x <- x[which(x %in%
tmp)], NA)
X <- vector()
for (k in seq_len(length(x))) {
for (i in seq_len(length(lbs))) {
ifelse(isTRUE(attr(PO, "class")[3] == ", ") ==
FALSE, tmplb <- jnt(unlist(strsplit(lbs[i],
"}{", fixed = TRUE)), sep = ",, "), tmplb <- jnt(unlist(strsplit(lbs[i],
"} {", fixed = TRUE)), sep = ",, "))
tmplb <- sub("{}{", "", dhc(tmplb, sep = ",, "),
fixed = TRUE)
tmplb <- sub("}{}", "", dhc(tmplb, sep = ",, "),
fixed = TRUE)
tmplb <- sub("{", "", dhc(tmplb, sep = ",, "),
fixed = TRUE)
tmplb <- sub("}", "", dhc(tmplb, sep = ",, "),
fixed = TRUE)
tmplb <- dhc(tmplb, sep = attr(PO, "class")[3])
if (isTRUE(x[k] %in% tmplb) == TRUE) {
X <- append(X, i)
break
}
else {
NA
}
}
rm(i)
}
rm(k)
if (isTRUE(length(X) == 0) == TRUE)
stop(paste(sQuote(deparse(substitute(x))), " is not part of ",
sQuote(deparse(substitute(PO))), ".", sep = ""),
call. = FALSE)
}
else {
if (isTRUE(max(x) > nrow(PO) | min(x) <= 0L) == TRUE)
stop(paste("Elements in ", sQuote(deparse(substitute(x))),
" must be greater than the size of ", sQuote(deparse(substitute(PO))),
".", sep = ""))
X <- as.integer(x)
}
ifelse(isTRUE(ideal == TRUE) == TRUE, po <- t(PO), po <- PO)
pfl <- vector()
for (i in seq_len(nrow(po))) {
for (k in seq_len(length(X))) {
ifelse(isTRUE(po[X[k], i] == 1L) == TRUE && isTRUE(po[i,
X[k]] == 0L) == TRUE, pfl <- append(pfl, i),
NA)
}
rm(k)
}
rm(i)
if (isTRUE(rclos == TRUE) == TRUE) {
pfl <- append(X, pfl)
}
else {
NA
}
if (isTRUE(length(pfl) > 0L) == TRUE) {
pfl <- unique(pfl)
pfll <- as.list(dimnames(PO)[[1]][pfl])
attr(pfll, "names") <- pfl
}
else {
pfll <- NULL
}
return(pfll)
}
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.