Nothing
costs <- function(scenario, disc=FALSE)
{
if (disc==FALSE)
{
mdres <- attr(scenario, "md_cost")
nmdres <- attr(scenario, "nmd_cost")
ires <- attr(scenario, "i_cost")
}else{
mdres <- attr(scenario, "md_costD")
nmdres <- attr(scenario, "nmd_costD")
ires <- attr(scenario, "i_costD")
}
res <- mdres + nmdres + ires
return(c(mdres, nmdres, ires, res, mdres/attr(scenario, "size"), nmdres/attr(scenario, "size"), ires/attr(scenario, "size"),
res/attr(scenario, "size")))
}
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.