I'm creating a graphic using ggplot2 and I am having difficulty with the subtitle when I use the geom_text function because it is "a" instead of just the colored ball. Here's an example
head(iris,3)
kIris <- 3
iris.kMeans <- kmeans(iris[,1:4], kIris, nstart=20)
IrisAgrupado <- data.frame(iris, cluster=factor(iris.kMeans$cluster))
ggplot(IrisAgrupado, aes(x=Petal.Width,y=Sepal.Width,color=cluster, label=Species)) +
geom_point(color="white")+
geom_text()
How is the final result of the graph the problem is in the "a" of the caption