Displaying 1 result from an estimated 1 matches for "figure_file_name_and_path".
2009 Aug 12
1
Another Plotting Hint - changing fill color for points
...g "Blue" and inner color being "Grey".
I've tried changing "col" and "bg", but that does not seem to have the desired effect.
Below is another attempt, but the pixel resolution of the points function does not appear to be high enough for this to work:
figure_file_name_and_path<-paste("Test.wmf", sep="")
vals_200<-rnorm(200)
vals_201<-rnorm(200)
win.metafile(file=as.character(figure_file_name_and_path), pointsize = 10)
plot(-4:4, -4:4, type = "n")# setting up coord. system
points(vals_201, vals_200, col = "blue", bg = &qu...