This is a test version of Biostars. For the public version, visit https://www.biostars.org.
How can the letters become bigger?

Hello,

I made a graph. How can the letters (Macrophage, Dendritic, Plasma....) become bigger?

Thanks in advance for great help!

Best,

Yue

hms_individual_integrated<-readRDS(file="hms_individual_integrated_OK.rds")
DimPlot(hms_individual_integrated, reduction = "umap", group.by = "celltype")
hms_individual_integrated<- FindNeighbors(hms_individual_integrated, dims = 1:10)
hms_individual_integrated <- FindClusters( hms_individual_integrated, resolution = 0.5)
head(Idents(hms_individual_integrated), 5)
hms_individual_integrated<- RunUMAP(hms_individual_integrated, dims = 1:10)
DimPlot(hms_individual_integrated, reduction = "umap")
new.cluster.ids <- c("Macrophage", "Macrophage", "Macrophage", "Macrophage", "Neutrophils", "Macrophage", "Naive_CD4_T", "NK", "Neutrophils", "Dendritic", "T", "T","Basal","Plasma","T") 
names(new.cluster.ids) <- levels(hms_individual_integrated)
hms_cluster_id<- RenameIdents(hms_individual_integrated, new.cluster.ids)
DimPlot(hms_cluster_id, reduction = "umap", label = TRUE, pt.size = 0.5) + NoLegend()

Screenshot-from-2020-09-01-03-36-48

rna-seq

Hello Bastien Herve,

Thank you so much for your great help!

Add label.size=10 in DImPlot.

Thank you again!

Best,

Yue

0 answers

No answers yet.

Log in to answer this question.