Description Usage Arguments Value Examples
Function plotting a plotly histogram on the given histvalue
1 2 3 4 5 6 7 8 | plotlyHistogram(
histvalue,
plotTitle,
xaxisTitle = "",
yaxisTitle = "",
pwidth = 200,
pheight = 200
)
|
histvalue |
the value to plot as a histogram |
plotTitle |
title of the plot |
xaxisTitle |
name of xaxis; default is "" |
yaxisTitle |
name of yaxis; default is "" |
pwidth |
overall plot width; default is 200 |
pheight |
overall plot height; default is 200 |
plotly plot object
1 2 3 4 | data("mouseData", package = "metagenomeSeq")
plotlyHistogram(histvalue = colSums(MRcounts(mouseData) > 0),
plotTitle = "Feature distribution",
xaxisTitle = "features", yaxisTitle = "frequency")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.