Hello
I imported a dataframe from excel and could plot what I needed just fine
(used the code ggplot(D1,aes(x=x1,y=y1)) + geom_point() + geom_smooth(method='lm') linearMod1 <- lm(y1 ~ x1, data=D1) print(linearMod1)
but the problem is, once I started searching how to make it pretty, I found a premade set of palettes and downloaded the package (wesanderson) and wanted to use the GrandBudapest1 palette that comes with it, but I don't quite know what and where to put on the code to make it work.
Thank you for your help already, and sorry if my English isn't the best.