If you take the code below, how can you change the filling of the third diamond, so it will be half-black, half-white? The solution should apply with any colors.
data <- c(1,2,3)
plot(data, pch=c(23,18,23), cex=c(2.5,3,2.5))
feedback
|
|
The
See also this Q/A: Point symbols in R | |||||
feedback
|
|
@JohnColby : Ok, here is a way to draw a half-coloured circle point, using
| ||||
|
feedback
|