Go to TogaWare.com Home Page. Data Science Desktop Survival Guide
by Graham Williams
Duck Duck Go



CLICK HERE TO VISIT THE UPDATED SURVIVAL GUIDE

Scatter Plot Faceted Location

Raw

\includegraphics[width=\textwidth]{figures/onepager/ggplot2:temp_changes_over_time-1}

ds %>%
  ggplot(aes(x=date, y=max_temp)) +
  geom_point(alpha=0.05, shape=".") +
  geom_smooth(method="gam", formula=y~s(x, bs="cs")) +
  facet_wrap(~location) +
  theme(axis.text.x=element_text(angle=45, hjust=1)) +
  labs(x=vnames["date"], y=vnames["max_temp"])

Partitioning the dataset by a categoric variable reduces the blob effect for big data. The plot uses location as the faceted variable to separately plot each location's maximum temperature over time. Notice the seasonal effect across all plots, some with quite different patterns.

The plot uses facet_wrap() to separately plot each location. Using ggplot2::geom_point() with alpha= reduces the effect of overlaid points as does using smaller dots on the plots by way of shape=. Together this works to de-clutter the plot and improves the presentation with an emphasis on the patterns. The x-axis tick labels are rotated $45^\circ$ using angle=45 within ggplot2::element_text() to avoid the labels overlapping. The hjust=1 forces the labels to be right justified.


Support further development by purchasing the PDF version of the book.
Other online resources include the GNU/Linux Desktop Survival Guide.
Books available on Amazon include Data Mining with Rattle and Essentials of Data Science.
Popular open source software includes rattle and wajig.
Hosted by Togaware, a pioneer of free and open source software since 1984.
Copyright © 2000-2020 Togaware Pty Ltd. . Creative Commons ShareAlike V4.