
ggplot2 - filling in manual shapes with manual colors
May 19, 2022 · Below are all the available shapes in base R with their associated pch codes below in grey. Note that values 0-14 are open (don't have fill); 15-20 are closed (black filled); …
r - Place a border around points - Stack Overflow
I'd like to place a black border around points on a scatterplot that are filled based on data, using ggplot2. Also, I would like to avoid having a legend entry for the black border since it will be.
How to specify pch by the value of a variable? - Stack Overflow
Oct 8, 2019 · I'm making a plot of Y vs X for some discrete points in R. There is a third variable Z that has a value of either A or B, so I want to identify the third variable by pch in the plot. I can …
r - Changing the width of a point in ggplot - Stack Overflow
Sep 2, 2015 · I know this is too much fine-tuning, but I wonder if it is possible to change the width of the line pch=21. I am trying to draw plots for a limited space, and I am using small units. …
r - Control point border thickness in ggplot - Stack Overflow
Dec 18, 2015 · Starting in version 2.0.0 of ggplot2, there is an argument to control point border thickness.From the NEWS.md file:
How to set the PCH value for geom_point as part of a theme …
Jan 8, 2022 · if I just add: pch=21 in the theme, I get: Error: Theme element `pch` is not defined in the element hierarchy. I've also tried using shape=21, in the theme, and am unable to get it to …
ggplot: geom_point shape larger than pch in base r
Jul 19, 2021 · I'm creating Bland Altman plots using the blandr and ggplot packages, I was previously using the BlandAltmanLeg package but switched due to difficulties in customing the …
plot - users own pch (clip) in r - Stack Overflow
Dec 31, 2012 · How to use an image as a point in ggplot? Is it possible to have user defined pch (clip art or icon or other type of file) used as point in R base or ggplot or other graphical device. …
formatting - Add pch symbol in R plot legend - Stack Overflow
Apr 14, 2013 · But I don't want to have a blue line in the legend for exceedance, but just the stars in the plot. I have to use the pch=8. I just want to have the stars in the legend, not the stars …
plotting in different shapes using pch= argument
Oct 16, 2012 · If I am using R to plot. How can I assign a particular shape to data points belonging to one category (using the pch argument to plot()) based on a column in my data frame that …