VlnPlot pvalue addition

38 views Asked by At

For some reason I can't seem to be getting the p-values, I just get my plot back as it is and the following warning message:

Warning messages: 
1: Removed 22217 rows containing non-finite outside the scale range (`stat_ydensity()`). 
2: Removed 22217 rows containing non-finite outside the scale range (`stat_signif()`). 
3: Computation failed in `stat_signif()`. Caused by error in `wilcox.test.default()`: ! not enough 'y' observations 
4: Removed 22217 rows containing missing values or values outside the scale range (`geom_point()`).

VlnPlot image

Here is my code:

VlnPlot(object = S, features = "Hif1a", split.by = "GT") +
stat_compare_means(comparisons = S$sub_cluster) +
ylim(0, 5)

#GT (KO+WT); sub_cluster (assigned clusters)
0

There are 0 answers