Nothing
interval<- function(lower_bound, upper_bound){
interval_size = (upper_bound-lower_bound)/6
interval_points <- c(lower_bound)
for(i in (1:6)){
interval_points <- c(interval_points,lower_bound+interval_size*i)
}
return(interval_points)
}
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.