diff --git a/vignettes/gallery_figs/gallery_05.R b/vignettes/gallery_figs/gallery_05.R index e3b49712..6784411d 100644 --- a/vignettes/gallery_figs/gallery_05.R +++ b/vignettes/gallery_figs/gallery_05.R @@ -4,4 +4,6 @@ tinytheme("ipsum") tinyplot(Sepal.Width ~ Petal.Width | Species, data = iris, type = "lm") -tinyplot_add(type = "p", alpha = .2) \ No newline at end of file +tinyplot_add(type = "p", alpha = .2) + +tinytheme() # reset theme (optional) \ No newline at end of file diff --git a/vignettes/gallery_figs/gallery_06.R b/vignettes/gallery_figs/gallery_06.R index 74a7c80b..1a166b17 100644 --- a/vignettes/gallery_figs/gallery_06.R +++ b/vignettes/gallery_figs/gallery_06.R @@ -13,4 +13,7 @@ with( x = term, y = est, ymin = lwr, ymax = upr, type = type_errorbar(length = 0.1) ) -) \ No newline at end of file +) + + +tinytheme() # reset theme (optional) \ No newline at end of file diff --git a/vignettes/gallery_figs/gallery_07.R b/vignettes/gallery_figs/gallery_07.R index 12157bb8..8595ca3b 100644 --- a/vignettes/gallery_figs/gallery_07.R +++ b/vignettes/gallery_figs/gallery_07.R @@ -9,3 +9,5 @@ tinyplot( type = "rect", palette = "viridis" ) + +tinytheme() # reset theme (optional) \ No newline at end of file diff --git a/vignettes/gallery_figs/gallery_08.R b/vignettes/gallery_figs/gallery_08.R index 7775e753..3b15f330 100644 --- a/vignettes/gallery_figs/gallery_08.R +++ b/vignettes/gallery_figs/gallery_08.R @@ -12,3 +12,5 @@ tinyplot(Month ~ Temp | Temp, data = aq, type = type_ridge(col = "white") ) + +tinytheme() # reset theme (optional) \ No newline at end of file diff --git a/vignettes/gallery_figs/gallery_09.R b/vignettes/gallery_figs/gallery_09.R index 16e4c6ba..9045123e 100644 --- a/vignettes/gallery_figs/gallery_09.R +++ b/vignettes/gallery_figs/gallery_09.R @@ -1,5 +1,4 @@ library("tinyplot") -tinytheme() tinyplot(eruptions ~ waiting, data = faithful, type = "lm") tinyplot_add(type = type_rug(jitter = TRUE, amount = 0.3)) tinyplot_add(type = type_rug(jitter = TRUE, amount = 0.1, side = 2)) diff --git a/vignettes/gallery_figs/gallery_10.R b/vignettes/gallery_figs/gallery_10.R index acc021af..a935e72c 100644 --- a/vignettes/gallery_figs/gallery_10.R +++ b/vignettes/gallery_figs/gallery_10.R @@ -4,4 +4,6 @@ tinyplot( ~Petal.Width | Species, type = "histogram", data = iris -) \ No newline at end of file +) + +tinytheme() # reset theme (optional) \ No newline at end of file diff --git a/vignettes/gallery_figs/gallery_11.R b/vignettes/gallery_figs/gallery_11.R index aafc04ad..967c44e7 100644 --- a/vignettes/gallery_figs/gallery_11.R +++ b/vignettes/gallery_figs/gallery_11.R @@ -5,4 +5,6 @@ tinyplot( len ~ dose | supp, data = ToothGrowth, lty = 1, flip = TRUE, type = type_boxplot(boxwex = 0.6, staplewex = 0, outline = FALSE) -) \ No newline at end of file +) + +tinytheme() # reset theme (optional) \ No newline at end of file