Description Usage Arguments Examples
Build a pheatmap object in stages
1 2 3 4 5 6 7 |
x |
A matrix or data frame of data for the heatmap |
... |
Additional arguments passed to other methods |
rownames_in |
The column of the data frame that gives the rownames
for the heatmap. Can be specified as an integer index or with the column
name in quotes. Set to |
1 2 3 4 5 6 7 8 | pheat(vendor_props)
# Re-format heatmap data in a data frame
vendor_props_df <- data.frame(
taxon_id = rownames(vendor_props),
vendor_props[,1:15])
rownames(vendor_props_df) <- NULL
pheat(vendor_props_df, rownames_in = "taxon_id")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.