View source: R/tab_measuredvalues_missingvalues.R
histFeature | R Documentation |
The function histFeature
creates a histogram with the number
of measured/missing values per feature.
histFeature(x, measured = TRUE, ...)
x |
|
measured |
|
... |
additional parameters passed to |
plotly
object from ggplotly
x <- matrix(c(c(1, 1, 1), c(1, NA, 1), c(1, NA, 1),
c(1, 1, 1), c(NA, 1, 1), c(NA, 1, 1)), byrow = FALSE, nrow = 3)
colnames(x) <- c("A_1", "A_2", "A_3", "B_1", "B_2", "B_3")
histFeature(x, binwidth = 1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.