This may be a poorly-posed question as I am quite new to R, but could someone help me figure out why my ggplots are randomly using a number as a plot title? For example, I generated the plot below:
plot <- FeatureScatter(combined, feature1 = "nCount_RNA", feature2 = "nFeature_RNA", group.by="compartment.class",cols=c("red","orange","green","yellow","blue","purple"))
plot + geom_hline(yintercept=temp3,color="black",linetype=2) +
geom_hline(yintercept=temp4,color="black",linetype=2) +
geom_vline(xintercept=temp1,color="black",linetype=2) +
geom_vline(xintercept=temp2,color="black",linetype=2)
Nowhere do I specify a plot title, but when I print my scatterplot, it has "0.81" as the plot title.
Please let me know if there's any other information needed to address my question!