Nothing
#[export]
rowMads <- function(x,method = "median", na.rm = FALSE,parallel = FALSE, cores = 0) {
.Call(Rfast_row_mads,x,method,na.rm,parallel,cores)
}
#[export]
colMads <- function(x,method = "median", na.rm = FALSE,parallel = FALSE, cores = 0) {
.Call(Rfast_col_mads,x,method,na.rm,parallel,cores)
}
# #[export]
mad2 <- function(x,method = "median",na.rm = FALSE) {
#.Deprecated("Rfast::Mad")
.Call(Rfast_mad2,x,method,na.rm)
}
#[export]
Mad <- function(x,method = "median",na.rm = FALSE) {
.Call(Rfast_mad2,x,method,na.rm)
}
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.