#' Predict Y
#'
#' @param X
#' @param Beta
#'
#' @return
#' @export
predict_Y = function(X, Beta) {
return(cbind(1, X) %*% Beta)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.