Bar plot in ggplot, add horizontal subtitle
Below you can find my code and the plot it produces. I want to add horizontal subtitles "Scenario1" and Scenario2" above, instead of having it together with "Sub-Scenario1" and "Sub-Scenario2". See the figure for more explanation.
myd<- data.frame( var1 = rep(c("Scenario1: Sub-Scenario 1","Scenario1: Sub-Scenario 2","Scenario2: Sub-Scenario 1","Scenario2: Sub-Scenario 2"),each=2),
samp = rep(c("Outcome 1","Outcome 2"),4),
V4=rep(NA,8),V3 = rep(NA,8), V2 = rep(NA,8), V1 = rep(NA,8) )
myd[myd$samp=="Outcome 1","V1"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V2"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V3"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V4"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V1"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V2"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V3"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V4"]=runif(4,100,200)
library(reshape2)
library(ggplot2)
meltd<- melt(myd, id.vars=1:2)
par(mfrow = c(1,1),lwd=2,oma=c(0,0.1,0,0))
m <- matrix(c(1,2),nrow = 2,ncol = 1,byrow = TRUE)
layout(mat = m,heights = c(0.85,0.15))
plot1<-ggplot(meltd, aes(x = var1, y = value, fill = variable, label = paste0(round(value, 1), "%"))) +
geom_bar(stat = "identity", position = position_dodge(width = 0.8), width = 0.6) +
facet_grid(samp ~ ., switch = "y", scales = "free_y", space = "free",labeller=label_wrap_gen(width=25, multi_line=T)) +
coord_flip() +
scale_fill_manual("legend",values = c("V4"="violet","V3" = "orange", "V2" = "red", "V1" = "blue", "Baseline" = "black")) +
geom_text(aes(y = value + 20 * sign(value)), position = position_dodge(width = 0.8), size=4)+
theme_bw() +
theme(
legend.position = "none",
strip.placement = "outside",
#axis.title.x = element_blank(),
axis.title.y = element_blank(),
# added face and size arguments
axis.text.y = element_text(colour="black", size=12),
axis.text.x= element_text(size=13),
strip.text.y = element_text(size = 10, colour = "black", face='bold'),
plot.margin = margin(0.1, 0.1, 2, 0.1, "cm"))+
ylab("Relative change in 2016 (in %)")
plot1
r ggplot2 bar-chart
add a comment |
Below you can find my code and the plot it produces. I want to add horizontal subtitles "Scenario1" and Scenario2" above, instead of having it together with "Sub-Scenario1" and "Sub-Scenario2". See the figure for more explanation.
myd<- data.frame( var1 = rep(c("Scenario1: Sub-Scenario 1","Scenario1: Sub-Scenario 2","Scenario2: Sub-Scenario 1","Scenario2: Sub-Scenario 2"),each=2),
samp = rep(c("Outcome 1","Outcome 2"),4),
V4=rep(NA,8),V3 = rep(NA,8), V2 = rep(NA,8), V1 = rep(NA,8) )
myd[myd$samp=="Outcome 1","V1"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V2"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V3"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V4"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V1"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V2"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V3"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V4"]=runif(4,100,200)
library(reshape2)
library(ggplot2)
meltd<- melt(myd, id.vars=1:2)
par(mfrow = c(1,1),lwd=2,oma=c(0,0.1,0,0))
m <- matrix(c(1,2),nrow = 2,ncol = 1,byrow = TRUE)
layout(mat = m,heights = c(0.85,0.15))
plot1<-ggplot(meltd, aes(x = var1, y = value, fill = variable, label = paste0(round(value, 1), "%"))) +
geom_bar(stat = "identity", position = position_dodge(width = 0.8), width = 0.6) +
facet_grid(samp ~ ., switch = "y", scales = "free_y", space = "free",labeller=label_wrap_gen(width=25, multi_line=T)) +
coord_flip() +
scale_fill_manual("legend",values = c("V4"="violet","V3" = "orange", "V2" = "red", "V1" = "blue", "Baseline" = "black")) +
geom_text(aes(y = value + 20 * sign(value)), position = position_dodge(width = 0.8), size=4)+
theme_bw() +
theme(
legend.position = "none",
strip.placement = "outside",
#axis.title.x = element_blank(),
axis.title.y = element_blank(),
# added face and size arguments
axis.text.y = element_text(colour="black", size=12),
axis.text.x= element_text(size=13),
strip.text.y = element_text(size = 10, colour = "black", face='bold'),
plot.margin = margin(0.1, 0.1, 2, 0.1, "cm"))+
ylab("Relative change in 2016 (in %)")
plot1
r ggplot2 bar-chart
add a comment |
Below you can find my code and the plot it produces. I want to add horizontal subtitles "Scenario1" and Scenario2" above, instead of having it together with "Sub-Scenario1" and "Sub-Scenario2". See the figure for more explanation.
myd<- data.frame( var1 = rep(c("Scenario1: Sub-Scenario 1","Scenario1: Sub-Scenario 2","Scenario2: Sub-Scenario 1","Scenario2: Sub-Scenario 2"),each=2),
samp = rep(c("Outcome 1","Outcome 2"),4),
V4=rep(NA,8),V3 = rep(NA,8), V2 = rep(NA,8), V1 = rep(NA,8) )
myd[myd$samp=="Outcome 1","V1"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V2"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V3"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V4"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V1"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V2"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V3"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V4"]=runif(4,100,200)
library(reshape2)
library(ggplot2)
meltd<- melt(myd, id.vars=1:2)
par(mfrow = c(1,1),lwd=2,oma=c(0,0.1,0,0))
m <- matrix(c(1,2),nrow = 2,ncol = 1,byrow = TRUE)
layout(mat = m,heights = c(0.85,0.15))
plot1<-ggplot(meltd, aes(x = var1, y = value, fill = variable, label = paste0(round(value, 1), "%"))) +
geom_bar(stat = "identity", position = position_dodge(width = 0.8), width = 0.6) +
facet_grid(samp ~ ., switch = "y", scales = "free_y", space = "free",labeller=label_wrap_gen(width=25, multi_line=T)) +
coord_flip() +
scale_fill_manual("legend",values = c("V4"="violet","V3" = "orange", "V2" = "red", "V1" = "blue", "Baseline" = "black")) +
geom_text(aes(y = value + 20 * sign(value)), position = position_dodge(width = 0.8), size=4)+
theme_bw() +
theme(
legend.position = "none",
strip.placement = "outside",
#axis.title.x = element_blank(),
axis.title.y = element_blank(),
# added face and size arguments
axis.text.y = element_text(colour="black", size=12),
axis.text.x= element_text(size=13),
strip.text.y = element_text(size = 10, colour = "black", face='bold'),
plot.margin = margin(0.1, 0.1, 2, 0.1, "cm"))+
ylab("Relative change in 2016 (in %)")
plot1
r ggplot2 bar-chart
Below you can find my code and the plot it produces. I want to add horizontal subtitles "Scenario1" and Scenario2" above, instead of having it together with "Sub-Scenario1" and "Sub-Scenario2". See the figure for more explanation.
myd<- data.frame( var1 = rep(c("Scenario1: Sub-Scenario 1","Scenario1: Sub-Scenario 2","Scenario2: Sub-Scenario 1","Scenario2: Sub-Scenario 2"),each=2),
samp = rep(c("Outcome 1","Outcome 2"),4),
V4=rep(NA,8),V3 = rep(NA,8), V2 = rep(NA,8), V1 = rep(NA,8) )
myd[myd$samp=="Outcome 1","V1"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V2"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V3"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V4"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V1"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V2"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V3"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V4"]=runif(4,100,200)
library(reshape2)
library(ggplot2)
meltd<- melt(myd, id.vars=1:2)
par(mfrow = c(1,1),lwd=2,oma=c(0,0.1,0,0))
m <- matrix(c(1,2),nrow = 2,ncol = 1,byrow = TRUE)
layout(mat = m,heights = c(0.85,0.15))
plot1<-ggplot(meltd, aes(x = var1, y = value, fill = variable, label = paste0(round(value, 1), "%"))) +
geom_bar(stat = "identity", position = position_dodge(width = 0.8), width = 0.6) +
facet_grid(samp ~ ., switch = "y", scales = "free_y", space = "free",labeller=label_wrap_gen(width=25, multi_line=T)) +
coord_flip() +
scale_fill_manual("legend",values = c("V4"="violet","V3" = "orange", "V2" = "red", "V1" = "blue", "Baseline" = "black")) +
geom_text(aes(y = value + 20 * sign(value)), position = position_dodge(width = 0.8), size=4)+
theme_bw() +
theme(
legend.position = "none",
strip.placement = "outside",
#axis.title.x = element_blank(),
axis.title.y = element_blank(),
# added face and size arguments
axis.text.y = element_text(colour="black", size=12),
axis.text.x= element_text(size=13),
strip.text.y = element_text(size = 10, colour = "black", face='bold'),
plot.margin = margin(0.1, 0.1, 2, 0.1, "cm"))+
ylab("Relative change in 2016 (in %)")
plot1
r ggplot2 bar-chart
r ggplot2 bar-chart
asked Nov 13 '18 at 10:37
Anthony HauserAnthony Hauser
1128
1128
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Here I used coord_cartesian
to set the area of the plot, and turned clip
off to plot the labels outside the panel.
myd<- data.frame( var1 = rep(c("Scenario1: Sub-Scenario 1","Scenario1: Sub-Scenario 2","Scenario2: Sub-Scenario 1","Scenario2: Sub-Scenario 2"),each=2),
samp = rep(c("Outcome 1","Outcome 2"),4),
V4=rep(NA,8),V3 = rep(NA,8), V2 = rep(NA,8), V1 = rep(NA,8) )
myd[myd$samp=="Outcome 1","V1"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V2"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V3"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V4"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V1"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V2"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V3"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V4"]=run[![enter image description here][1]][1]if(4,100,200)
library(reshape2)
library(ggplot2)
library(ggstance)
library(tidyverse)
meltd<- melt(myd, id.vars=1:2)
meltd %>%
separate(col = var1,
into = c("scenario", "subscenario"),
remove = F,
sep = ":") %>%
mutate(subscenario = fct_rev(subscenario)) %>%
ggplot(aes(value, var1,
fill = variable,
label = paste0(round(value, 1), "%"))) +
geom_barh(stat = "identity",
position = position_dodgev()) +
theme_bw() +
facet_grid(samp ~ ., switch = "y",
scales = "free_y", space="free",
labeller = label_bquote(rows = .(samp))) +
theme(legend.position = "none",
strip.placement = "outside") +
scale_y_discrete(NULL,
labels = rep(c("Subscenario 1", "Subscenario 2"), 2)) +
xlab("Relative change in 2016 (in %)") +
coord_cartesian(xlim = c(0,200), clip = "off") +
geom_text(data = data.frame(
x = -15,
y = rep(c(2.5,4.5), ,2),
scenario = rep(c("Scenario1", "Scenario2"), 2)),
inherit.aes = F, aes(x,y, label = scenario),
hjust = 1)
add a comment |
Just need to add a line break in your initial setup, using n
, like this:
myd<- data.frame( var1 = rep(c("Scenario1: nSub-Scenario 1","Scenario1: nSub-Scenario 2","Scenario2: nSub-Scenario 1","Scenario2: nSub-Scenario 2"),each=2),
samp = rep(c("Outcome 1","Outcome 2"),4),
V4=rep(NA,8),V3 = rep(NA,8), V2 = rep(NA,8), V1 = rep(NA,8) )
Output:
Thanks but that's not exactly what I want. I don't want "Scenario2" to be written twice in "Outcome 1" but just once above the two subscenario. Look at my figure.
– Anthony Hauser
Nov 13 '18 at 10:59
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53279127%2fbar-plot-in-ggplot-add-horizontal-subtitle%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Here I used coord_cartesian
to set the area of the plot, and turned clip
off to plot the labels outside the panel.
myd<- data.frame( var1 = rep(c("Scenario1: Sub-Scenario 1","Scenario1: Sub-Scenario 2","Scenario2: Sub-Scenario 1","Scenario2: Sub-Scenario 2"),each=2),
samp = rep(c("Outcome 1","Outcome 2"),4),
V4=rep(NA,8),V3 = rep(NA,8), V2 = rep(NA,8), V1 = rep(NA,8) )
myd[myd$samp=="Outcome 1","V1"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V2"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V3"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V4"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V1"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V2"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V3"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V4"]=run[![enter image description here][1]][1]if(4,100,200)
library(reshape2)
library(ggplot2)
library(ggstance)
library(tidyverse)
meltd<- melt(myd, id.vars=1:2)
meltd %>%
separate(col = var1,
into = c("scenario", "subscenario"),
remove = F,
sep = ":") %>%
mutate(subscenario = fct_rev(subscenario)) %>%
ggplot(aes(value, var1,
fill = variable,
label = paste0(round(value, 1), "%"))) +
geom_barh(stat = "identity",
position = position_dodgev()) +
theme_bw() +
facet_grid(samp ~ ., switch = "y",
scales = "free_y", space="free",
labeller = label_bquote(rows = .(samp))) +
theme(legend.position = "none",
strip.placement = "outside") +
scale_y_discrete(NULL,
labels = rep(c("Subscenario 1", "Subscenario 2"), 2)) +
xlab("Relative change in 2016 (in %)") +
coord_cartesian(xlim = c(0,200), clip = "off") +
geom_text(data = data.frame(
x = -15,
y = rep(c(2.5,4.5), ,2),
scenario = rep(c("Scenario1", "Scenario2"), 2)),
inherit.aes = F, aes(x,y, label = scenario),
hjust = 1)
add a comment |
Here I used coord_cartesian
to set the area of the plot, and turned clip
off to plot the labels outside the panel.
myd<- data.frame( var1 = rep(c("Scenario1: Sub-Scenario 1","Scenario1: Sub-Scenario 2","Scenario2: Sub-Scenario 1","Scenario2: Sub-Scenario 2"),each=2),
samp = rep(c("Outcome 1","Outcome 2"),4),
V4=rep(NA,8),V3 = rep(NA,8), V2 = rep(NA,8), V1 = rep(NA,8) )
myd[myd$samp=="Outcome 1","V1"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V2"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V3"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V4"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V1"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V2"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V3"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V4"]=run[![enter image description here][1]][1]if(4,100,200)
library(reshape2)
library(ggplot2)
library(ggstance)
library(tidyverse)
meltd<- melt(myd, id.vars=1:2)
meltd %>%
separate(col = var1,
into = c("scenario", "subscenario"),
remove = F,
sep = ":") %>%
mutate(subscenario = fct_rev(subscenario)) %>%
ggplot(aes(value, var1,
fill = variable,
label = paste0(round(value, 1), "%"))) +
geom_barh(stat = "identity",
position = position_dodgev()) +
theme_bw() +
facet_grid(samp ~ ., switch = "y",
scales = "free_y", space="free",
labeller = label_bquote(rows = .(samp))) +
theme(legend.position = "none",
strip.placement = "outside") +
scale_y_discrete(NULL,
labels = rep(c("Subscenario 1", "Subscenario 2"), 2)) +
xlab("Relative change in 2016 (in %)") +
coord_cartesian(xlim = c(0,200), clip = "off") +
geom_text(data = data.frame(
x = -15,
y = rep(c(2.5,4.5), ,2),
scenario = rep(c("Scenario1", "Scenario2"), 2)),
inherit.aes = F, aes(x,y, label = scenario),
hjust = 1)
add a comment |
Here I used coord_cartesian
to set the area of the plot, and turned clip
off to plot the labels outside the panel.
myd<- data.frame( var1 = rep(c("Scenario1: Sub-Scenario 1","Scenario1: Sub-Scenario 2","Scenario2: Sub-Scenario 1","Scenario2: Sub-Scenario 2"),each=2),
samp = rep(c("Outcome 1","Outcome 2"),4),
V4=rep(NA,8),V3 = rep(NA,8), V2 = rep(NA,8), V1 = rep(NA,8) )
myd[myd$samp=="Outcome 1","V1"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V2"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V3"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V4"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V1"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V2"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V3"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V4"]=run[![enter image description here][1]][1]if(4,100,200)
library(reshape2)
library(ggplot2)
library(ggstance)
library(tidyverse)
meltd<- melt(myd, id.vars=1:2)
meltd %>%
separate(col = var1,
into = c("scenario", "subscenario"),
remove = F,
sep = ":") %>%
mutate(subscenario = fct_rev(subscenario)) %>%
ggplot(aes(value, var1,
fill = variable,
label = paste0(round(value, 1), "%"))) +
geom_barh(stat = "identity",
position = position_dodgev()) +
theme_bw() +
facet_grid(samp ~ ., switch = "y",
scales = "free_y", space="free",
labeller = label_bquote(rows = .(samp))) +
theme(legend.position = "none",
strip.placement = "outside") +
scale_y_discrete(NULL,
labels = rep(c("Subscenario 1", "Subscenario 2"), 2)) +
xlab("Relative change in 2016 (in %)") +
coord_cartesian(xlim = c(0,200), clip = "off") +
geom_text(data = data.frame(
x = -15,
y = rep(c(2.5,4.5), ,2),
scenario = rep(c("Scenario1", "Scenario2"), 2)),
inherit.aes = F, aes(x,y, label = scenario),
hjust = 1)
Here I used coord_cartesian
to set the area of the plot, and turned clip
off to plot the labels outside the panel.
myd<- data.frame( var1 = rep(c("Scenario1: Sub-Scenario 1","Scenario1: Sub-Scenario 2","Scenario2: Sub-Scenario 1","Scenario2: Sub-Scenario 2"),each=2),
samp = rep(c("Outcome 1","Outcome 2"),4),
V4=rep(NA,8),V3 = rep(NA,8), V2 = rep(NA,8), V1 = rep(NA,8) )
myd[myd$samp=="Outcome 1","V1"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V2"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V3"]=runif(4,100,200)
myd[myd$samp=="Outcome 1","V4"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V1"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V2"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V3"]=runif(4,100,200)
myd[myd$samp=="Outcome 2","V4"]=run[![enter image description here][1]][1]if(4,100,200)
library(reshape2)
library(ggplot2)
library(ggstance)
library(tidyverse)
meltd<- melt(myd, id.vars=1:2)
meltd %>%
separate(col = var1,
into = c("scenario", "subscenario"),
remove = F,
sep = ":") %>%
mutate(subscenario = fct_rev(subscenario)) %>%
ggplot(aes(value, var1,
fill = variable,
label = paste0(round(value, 1), "%"))) +
geom_barh(stat = "identity",
position = position_dodgev()) +
theme_bw() +
facet_grid(samp ~ ., switch = "y",
scales = "free_y", space="free",
labeller = label_bquote(rows = .(samp))) +
theme(legend.position = "none",
strip.placement = "outside") +
scale_y_discrete(NULL,
labels = rep(c("Subscenario 1", "Subscenario 2"), 2)) +
xlab("Relative change in 2016 (in %)") +
coord_cartesian(xlim = c(0,200), clip = "off") +
geom_text(data = data.frame(
x = -15,
y = rep(c(2.5,4.5), ,2),
scenario = rep(c("Scenario1", "Scenario2"), 2)),
inherit.aes = F, aes(x,y, label = scenario),
hjust = 1)
answered Nov 13 '18 at 13:59
Joel SchneiderJoel Schneider
51658
51658
add a comment |
add a comment |
Just need to add a line break in your initial setup, using n
, like this:
myd<- data.frame( var1 = rep(c("Scenario1: nSub-Scenario 1","Scenario1: nSub-Scenario 2","Scenario2: nSub-Scenario 1","Scenario2: nSub-Scenario 2"),each=2),
samp = rep(c("Outcome 1","Outcome 2"),4),
V4=rep(NA,8),V3 = rep(NA,8), V2 = rep(NA,8), V1 = rep(NA,8) )
Output:
Thanks but that's not exactly what I want. I don't want "Scenario2" to be written twice in "Outcome 1" but just once above the two subscenario. Look at my figure.
– Anthony Hauser
Nov 13 '18 at 10:59
add a comment |
Just need to add a line break in your initial setup, using n
, like this:
myd<- data.frame( var1 = rep(c("Scenario1: nSub-Scenario 1","Scenario1: nSub-Scenario 2","Scenario2: nSub-Scenario 1","Scenario2: nSub-Scenario 2"),each=2),
samp = rep(c("Outcome 1","Outcome 2"),4),
V4=rep(NA,8),V3 = rep(NA,8), V2 = rep(NA,8), V1 = rep(NA,8) )
Output:
Thanks but that's not exactly what I want. I don't want "Scenario2" to be written twice in "Outcome 1" but just once above the two subscenario. Look at my figure.
– Anthony Hauser
Nov 13 '18 at 10:59
add a comment |
Just need to add a line break in your initial setup, using n
, like this:
myd<- data.frame( var1 = rep(c("Scenario1: nSub-Scenario 1","Scenario1: nSub-Scenario 2","Scenario2: nSub-Scenario 1","Scenario2: nSub-Scenario 2"),each=2),
samp = rep(c("Outcome 1","Outcome 2"),4),
V4=rep(NA,8),V3 = rep(NA,8), V2 = rep(NA,8), V1 = rep(NA,8) )
Output:
Just need to add a line break in your initial setup, using n
, like this:
myd<- data.frame( var1 = rep(c("Scenario1: nSub-Scenario 1","Scenario1: nSub-Scenario 2","Scenario2: nSub-Scenario 1","Scenario2: nSub-Scenario 2"),each=2),
samp = rep(c("Outcome 1","Outcome 2"),4),
V4=rep(NA,8),V3 = rep(NA,8), V2 = rep(NA,8), V1 = rep(NA,8) )
Output:
answered Nov 13 '18 at 10:43
Randall HelmsRandall Helms
50029
50029
Thanks but that's not exactly what I want. I don't want "Scenario2" to be written twice in "Outcome 1" but just once above the two subscenario. Look at my figure.
– Anthony Hauser
Nov 13 '18 at 10:59
add a comment |
Thanks but that's not exactly what I want. I don't want "Scenario2" to be written twice in "Outcome 1" but just once above the two subscenario. Look at my figure.
– Anthony Hauser
Nov 13 '18 at 10:59
Thanks but that's not exactly what I want. I don't want "Scenario2" to be written twice in "Outcome 1" but just once above the two subscenario. Look at my figure.
– Anthony Hauser
Nov 13 '18 at 10:59
Thanks but that's not exactly what I want. I don't want "Scenario2" to be written twice in "Outcome 1" but just once above the two subscenario. Look at my figure.
– Anthony Hauser
Nov 13 '18 at 10:59
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53279127%2fbar-plot-in-ggplot-add-horizontal-subtitle%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown