Nothing
#[export]
freq.max <- function(x,na.rm = FALSE) {
if(is.integer(x)){
.Call(Rfast_max_freq_i,x,na.rm)
}else{
.Call(Rfast_max_freq_d,x,na.rm)
}
}
#[export]
freq.min <- function(x,na.rm = FALSE) {
if(is.integer(x)){
.Call(Rfast_min_freq_i,x,na.rm)
}else{
.Call(Rfast_min_freq_d,x,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.