有沒有一種通用的方法可以在修拉圖中包含圖例?例如,如果我的代碼是,
DimHeatmap(norm_data3, dims = 1, cells = 500, balanced = TRUE)
如何包含與 PCA 組件的值對應的顏色的圖例?
uj5u.com熱心網友回復:
這有點模糊,但你應該設定fast = FALSE
:
如果為真,則使用影像生成繪圖;比使用 ggplot2 更快,但不可自定義
這是使用pbmc_small
來自Seurat
pacakage 的資料集的可重現示例:
library(Seurat)
#> Warning: package 'Seurat' was built under R version 4.1.2
#> Attaching SeuratObject
#> Attaching sp
data("pbmc_small")
DimHeatmap(pbmc_small, dims = 1, cells = 500, balanced = TRUE, nfeatures = 4, fast = FALSE)
#> Warning: Requested number is larger than the number of available items (80).
#> Setting to 80.
由reprex 包于 2022-06-30 創建(v2.0.1)
轉載請註明出處,本文鏈接:https://www.uj5u.com/shujuku/498313.html