Nothing
#' Create Identity Matrix
#'
#' This function returns an NxN identity matrix.
#'
#' @param N dimension of square matrix
#' @return NxN identity matrix
#' @export
eye = function(N){
return(diag(rep(1,N)))
}
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.