How can I make a point that is a big, NOT colored in circle?
x0 and y0 are just lists with 1 value.
So this just plots one value:
points(x=x0,y=y0,col="green",pch=16)
But the circle is sort of small, and it’s colored in.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To make the single plotting character larger, use
cex, as in:Please read (even though it’s kind of tedious)
?parfor base graphics options.EDIT
I suppose I should add (even though I agree this question is mostly a duplicate) that the second part of your question simply requires a different value for
pch. Sounds likepch = 1is what you want, but you can see lots of options viaexample("points").