Hi guys,
I have a table called netsales . In this table i have 2 columns: CustomerCountryName and Netsales2022. I am curious if it is possible to adjust this code so it is suitable fro my df? I copied it from this webpage I specifically want to use rayshader visualization capabilities
mtcars_gg = ggplot(mtcars) +
geom_point(aes(x=mpg,color=cyl,y=disp),size=2) +
scale_color_continuous(limits=c(0,8)) +
ggtitle("mtcars: Displacement vs mpg vs # of cylinders") +
theme(title = element_text(size=8),
text = element_text(size=12))
plot_gg(mtcars_gg, height=3, width=3.5, multicore=TRUE, pointcontract = 0.7, soliddepth=-200)