## File Name: sirt_remove_arguments_function.R
## File Version: 0.02
sirt_remove_arguments_function <- function(fun, args)
{
fun_formals <- formals(fun=fun)
rem <- setdiff( names(args), names(fun_formals))
args <- sirt_remove_list_entries(list=args, rem=rem)
return(args)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.