Nothing
## File Name: cdm_positivity_restriction.R
## File Version: 0.02
cdm_positivity_restriction <- function(x, positive)
{
x <- ifelse( ( x < 0 ) & positive, 0, x )
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.