this is my first post. I've read the guidelines for posting and I will do my best to be as specific and detailed as possible.
I am using ggplot2 to draw a basketball court. I added all the straight lines using the + geom_segment() layer. My understanding is that the easiest way to add circles and circle segments is by using the geom_circle() and geom_arc() layers which can be accessed through the ggforce package, but I am having trouble loading it.
I have searched SO as well as Google for help with this, but can't find any useful info.
After successfully installing the package and then trying to load it, this is the error message I receive:
> install.packages("ggforce")
> library(ggforce)
Error: package or namespace load failed for ‘ggforce’:
object ‘scale_type’ is not exported by 'namespace:ggplot2'
Can someone explain to me why this is happening?
Thank you.