Nothing
delete.na <-
function (x, alternative = c("less", "greater") )
{
if (alternative == "less")
{
if (nrow(x) < ncol(x))
a <- na.omit(x)
else {
a <- t(x)
b <- na.omit(a)
a <- t(b)
}
b <- cbind(a)
return(b)
}
if (alternative == "greater")
{
if (nrow(x) > ncol(x))
a <- na.omit(x)
else {
a <- t(x)
b <- na.omit(a)
a <- t(b)
}
b <- cbind(a)
return(b)
}
}
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.