require(wordcloud)
textplot(loc[,1],loc[,2],states)
Gives me this
http://blog.fellstat.com/wp-content/uploads/2012/09/blog_text2.png
I want to change the colour of the red dots.
textplot(loc[,1],loc[,2],states, col="blue")
This changes the colour of the text.
Somwehre in the texplot function is the code for points:
> textplot
function (x, y, words, cex = 1, new = TRUE, show.lines = TRUE,
....
points(x[i], y[i], pch = 16, col = "red", cex = 0.5)
....
<environment: namespace:wordcloud>
But does this mean it's fixed to red, pch 16 and cex 0.5? I changed the par to par(col="blue") and it still shows the red dots.