We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9551185 commit f532822Copy full SHA for f532822
1 file changed
R/cellstatplot.R
@@ -542,10 +542,10 @@ CellStatPlot.data.frame <- function(
542
split_by = split_by, facet_by = facet_by, ...)
543
} else if (plot_type == "pies") {
544
if (is.null(group_by)) {
545
- stop("Cannot create a heatmap (cell_type = 'pie') plot without specifying 'group_by'.")
+ stop("Cannot create a heatmap (cell_type = 'pie') plot without specifying 'group_by' (works as columns of the plot).")
546
}
547
if (is.null(rows_by)) {
548
- stop("Cannot create a heatmap (cell_type = 'pie') plot without specifying 'rows_by'.")
+ stop("Cannot create a heatmap (cell_type = 'pie') plot without specifying 'rows_by' (works as rows of the plot).")
549
550
if (!is.null(facet_by)) {
551
stop("Cannot create a heatmap (cell_type = 'pie') plot with 'facet_by'.")
0 commit comments