Nothing
## File Name: sirt_matrix_names.R
## File Version: 0.07
sirt_matrix_names <- function(x, row_names=NULL, col_names=NULL, extract_names=NULL)
{
if ( ! is.null(extract_names) ){
row_names <- rownames(extract_names)
col_names <- colnames(extract_names)
}
if ( ! is.null(row_names) ){
rownames(x) <- row_names
}
if ( ! is.null(col_names) ){
colnames(x) <- col_names
}
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.