Nothing
flt <-
function (e, PO, rclos = TRUE)
{
if (isTRUE(e > nrow(PO)) == TRUE)
stop("'e' is greater than the size of the partial order")
pfl <- vector()
for (i in 1:nrow(PO)) {
if (isTRUE(PO[e, i] == 1) == TRUE && isTRUE(PO[i, e] ==
0) == TRUE) {
pfl <- append(pfl, i)
}
else {
NA
}
}
rm(i)
if (rclos) {
pfl <- append(pfl, e)
}
return(pfl)
}
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.