Browsed by
Tag: scale_size_manual()

Variable-Dependent Manipulation of Point and Line Sizes in R

Variable-Dependent Manipulation of Point and Line Sizes in R

I will randomly create a piece of data and then proceed to plot a line graph with points for this data. I have differentiated point colors and shapes based on the variable “Genotype”. In the above code, the value geom_point(size=5) sets the point size to 5 for both GenotypeA and GenotypeB. However, I would like to increase the point size specifically for GenotypeA. I will change the code from geom_point(size=5) to geom_point(aes(size=Genotype)). This means that I will adjust the point…

Read More Read More