Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases now! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
R Data Visualization Recipes

You're reading from   R Data Visualization Recipes A cookbook with 65+ data visualization recipes for smarter decision-making

Arrow left icon
Product type Book
Published in Nov 2017
Publisher Packt
ISBN-13 9781788398312
Pages 366 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Vitor Bianchi Lanzetta Vitor Bianchi Lanzetta
Author Profile Icon Vitor Bianchi Lanzetta
Vitor Bianchi Lanzetta
Arrow right icon
View More author details
Toc

Table of Contents (19) Chapters Close

Title Page
Credits
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface
1. Installation and Introduction FREE CHAPTER 2. Plotting Two Continuous Variables 3. Plotting a Discrete Predictor and a Continuous Response 4. Plotting One Variable 5. Making Other Bivariate Plots 6. Creating Maps 7. Faceting 8. Designing Three-Dimensional Plots 9. Using Theming Packages 10. Designing More Specialized Plots 11. Making Interactive Plots 12. Building Shiny Dashboards

Creating simple raster plots with ggplot2


Raster plots can be seen as optimized tile plots. By adopting this geometry, there is no need to pick the binwidth argument. This makes the plot brewing process easier sometimes. It may be faster than brewing tiles while it also produces a smaller output when saved to PDF.

The ggplot2documentation considers raster geometry as a high performance special case when all tiles are the same size. This recipe demonstrates how to craft a simple raster plot with ggplot2. Using the car data set, a third variable will be computed by the stat_density_2d() function and then used to fill the raster. Explanations are highlighting alternative functions.

How to do it...

Here is how we proceed with the recipe:

  1. To simultaneously compute ..density.. and plot a raster, use stat_density_2d():
> library(ggplot2)
> ggplot(data = cars, aes(x = speed, y = dist)) + 
   stat_density_2d(aes(fill = ..density..),
                   geom = 'raster', contour = F)

Result looks like...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime