Nothing
GH.X = function(q = 21, lower_bound = -3, upper_bound = 3) {
level_diff = (upper_bound - lower_bound) / (q - 1)
X = as.matrix(as.numeric(map(1:q, function(k) {
index = (lower_bound + (k - 1) * level_diff)
return(index)
})))
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.