Hi,
I generally have been able to export pngs of my plots, by using ggsave and setting type to cairo for antialiasing. However, suddenly I got this error:
Using ragg device as default. Ignoring `type` and `antialias` arguments
This is my code for exporting the last plot as a png:
ggsave(filename = 'X.png',
+ dpi = 300,
+ type = 'cairo',
+ width = 30, height = 15, units = 'in')
Thanks!