diff --git a/apple-touch-icon-120x120.png b/apple-touch-icon-120x120.png index 520514e..0ff3d5d 100644 Binary files a/apple-touch-icon-120x120.png and b/apple-touch-icon-120x120.png differ diff --git a/apple-touch-icon-152x152.png b/apple-touch-icon-152x152.png index 3df8302..9df41df 100644 Binary files a/apple-touch-icon-152x152.png and b/apple-touch-icon-152x152.png differ diff --git a/apple-touch-icon-180x180.png b/apple-touch-icon-180x180.png index a86bed5..0f9def4 100644 Binary files a/apple-touch-icon-180x180.png and b/apple-touch-icon-180x180.png differ diff --git a/apple-touch-icon-60x60.png b/apple-touch-icon-60x60.png index 215b57b..5391895 100644 Binary files a/apple-touch-icon-60x60.png and b/apple-touch-icon-60x60.png differ diff --git a/apple-touch-icon-76x76.png b/apple-touch-icon-76x76.png index 4c12a1b..904027d 100644 Binary files a/apple-touch-icon-76x76.png and b/apple-touch-icon-76x76.png differ diff --git a/apple-touch-icon.png b/apple-touch-icon.png index 6bd9da2..16c8b05 100644 Binary files a/apple-touch-icon.png and b/apple-touch-icon.png differ diff --git a/favicon-16x16.png b/favicon-16x16.png index 58bd516..cacea65 100644 Binary files a/favicon-16x16.png and b/favicon-16x16.png differ diff --git a/favicon-32x32.png b/favicon-32x32.png index b0418e2..a52e156 100644 Binary files a/favicon-32x32.png and b/favicon-32x32.png differ diff --git a/pkgdown.yml b/pkgdown.yml index 6b26647..586d2a3 100644 --- a/pkgdown.yml +++ b/pkgdown.yml @@ -2,7 +2,7 @@ pandoc: 3.1.11 pkgdown: 2.0.9 pkgdown_sha: ~ articles: {} -last_built: 2024-05-01T16:35Z +last_built: 2024-06-23T23:48Z urls: reference: https://hughjonesd.github.io/ggmagnify/reference article: https://hughjonesd.github.io/ggmagnify/articles diff --git a/reference/geom_magnify.html b/reference/geom_magnify.html index 4a2e0cc..d46513b 100644 --- a/reference/geom_magnify.html +++ b/reference/geom_magnify.html @@ -184,7 +184,8 @@
plot
an appropriate theme.
Create a theme suitable for an inset ggplot
+Use inset_theme()
to add a suitable theme to a manually-created inset
+plot.
library(ggplot2)
+ggp <- ggplot(iris, aes(Sepal.Width, Sepal.Length, colour = Species)) +
+ geom_point() + xlim(c(2, 6))
+from <- list(2.5, 3.5, 6, 7)
+to <- list(4, 6, 5, 7)
+
+inset <- ggp + geom_density2d() + inset_theme(axes = "")
+ggp + geom_magnify(from = from, to = to, plot = inset)
+
+