Best way to format 500+ plots using facet wrap in R? [images & code included]
问题 I am trying to display sales (y-axis) week over week (x-axis) for 890 vendors. I want to display this data using a facet wrap to quickly see where vendors are having a spike in sales. The plot in my RStudio console looks as such. This Makes sense, as rendering the plot here isnt the best view, however how can I properly format my plots onto a PDF even if it requires multiple pages of PDFs. Code for plot ggplot(Holiday_Spike_Table, aes(x = FSCL_WK, y = SLS))+ geom_col()+ facet_wrap(~MVNDR_NM)