## File Name: rt_scaled.R
## File Version: 0.04
rt_scaled <- function(n, location=0, shape=1, df=Inf)
{
x <- stats::rt( n, df=df, ncp=0 )
x <- location + shape * x
return(x)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.