cvFeaturePlot {MatrixQCvis} | R Documentation |
The function 'cvFeaturePlot' returns a 'plotly' plot of coefficient of variation values. It will create a violin plot and superseded points of coefficient of variation values per list entry of 'l'.
cvFeaturePlot(l, lines = FALSE)
l |
'list' containing matrices |
lines |
'logical' |
'lines = TRUE' will connect the points belonging to the same feature with a line. If there are less than two features, the violin plot will not be plotted. The violin plots will be ordered according to the order in 'l'
'plotly'
x1 <- matrix(1:100, ncol = 10, nrow = 10, dimnames = list(paste("feature", 1:10), paste("sample", 1:10))) x2 <- x1 + 5 x3 <- x2 + 10 l <- list(x1 = x1, x2 = x2, x3 = x3) cvFeaturePlot(l, lines = FALSE)