From 3e98e0b4245dd2192af5a90aedcb0b50deeb25f8 Mon Sep 17 00:00:00 2001 From: ppoyk <138587496+ppoyk@users.noreply.github.com> Date: Mon, 10 Jun 2024 13:39:11 +0300 Subject: [PATCH] drop vline at zero, possible confusion --- 00-base.Rmd | 2 -- 1 file changed, 2 deletions(-) diff --git a/00-base.Rmd b/00-base.Rmd index 2b0a6a1..263ecf7 100644 --- a/00-base.Rmd +++ b/00-base.Rmd @@ -1431,7 +1431,6 @@ maa_deltaplot <- ggplot(putki_yhd_plot) + geom_histogram(aes(maa_filled, fill=alpha("black",.7)), binwidth=2) + geom_histogram(aes(maa_delta, fill=alpha("red",.7)), na.rm=T, binwidth=2) + geom_histogram(aes(maa_ver, fill=alpha("yellow",.9)), na.rm=T, binwidth=2) + - geom_vline(xintercept=0, linetype=3, alpha=0.2, lwd=1.2) + coord_trans(y="pseudo_log") + scale_y_continuous(breaks=c(0,5,10,25,50,100,200,500,1000)) + theme_classic() + theme(legend.position="top") + @@ -1447,7 +1446,6 @@ yla_deltaplot <- ggplot(putki_yhd_plot) + geom_histogram(aes(yla_filled, fill=alpha("black",.7)), binwidth=2) + geom_histogram(aes(yla_delta, fill=alpha("red",0.7)), na.rm=T, binwidth=2) + geom_histogram(aes(yla_ver, fill=alpha("yellow",.9)), na.rm=T, binwidth=2) + - geom_vline(xintercept=0, linetype=3, alpha=0.2, lwd=1.2) + coord_trans(y="pseudo_log") + scale_y_continuous(breaks=c(0,5,10,25,50,100,200,500,1000)) + theme_classic() + theme(legend.position="top") +