Nothing
sharpen.wmppp <- function(X, ...)
{
X <- sharpen.ppp(X, ...)
class(X) <- c("wmppp", "ppp")
return(X)
}
split.wmppp <- function(...)
{
Xlist <- split.ppp(...)
as.wmppplist <- function(X) {
class(X) <- c("wmppp", "ppp")
return(X)
}
Xlist <- lapply(Xlist, as.wmppplist)
return(Xlist)
}
superimpose.wmppp <- function(...)
{
X <- superimpose.ppp(...)
class(X) <- c("wmppp", "ppp")
return(X)
}
unique.wmppp <- function(x, ...)
{
X <- unique.ppp(x, ...)
class(X) <- c("wmppp", "ppp")
return(X)
}
"[.wmppp" <- function(i, j, drop=FALSE, ..., clip=FALSE)
{
X <- "[.ppp"(i, j, drop=drop, ..., clip=clip)
class(X) <- c("wmppp", "ppp")
return(X)
}
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.