ggplot plot multi-plot in one page
How to plot several subplot in one page? each subplot with it's x,y axis (do not share any axis), but share the legend.
Here is my example data:
df <- data.frame(class=paste0('a',1:20),
x1=runif(20),
x2=runif(20),
y1=runif(20),
y2=runif(20))
subplot codes as:
p1 <- ggplot(df,aes(x=x1,y=y1))+
geom_point(aes(color=class),size=2,show.legend=TRUE)+
stat_smooth(method='lm',color='black')+
theme_bw()
p2 <- ggplot(df,aes(x=x2,y=y2))+
geom_point(aes(color=class),size=2,show.legend=TRUE)+
stat_smooth(method='lm',color='black')+
theme_bw()
I try to plot two graphic x1-y1 and x2-y2, and they share point class.
The plot I expected show as follows:
ggplot2
add a comment |
How to plot several subplot in one page? each subplot with it's x,y axis (do not share any axis), but share the legend.
Here is my example data:
df <- data.frame(class=paste0('a',1:20),
x1=runif(20),
x2=runif(20),
y1=runif(20),
y2=runif(20))
subplot codes as:
p1 <- ggplot(df,aes(x=x1,y=y1))+
geom_point(aes(color=class),size=2,show.legend=TRUE)+
stat_smooth(method='lm',color='black')+
theme_bw()
p2 <- ggplot(df,aes(x=x2,y=y2))+
geom_point(aes(color=class),size=2,show.legend=TRUE)+
stat_smooth(method='lm',color='black')+
theme_bw()
I try to plot two graphic x1-y1 and x2-y2, and they share point class.
The plot I expected show as follows:
ggplot2
Could you share the code used to produce the above plots? It's otherwise unclear what your intention is except having two subplots.
– NelsonGon
Nov 20 '18 at 12:58
@NelsonGon I have update plot that I expected.
– Cobin
Nov 20 '18 at 13:14
add a comment |
How to plot several subplot in one page? each subplot with it's x,y axis (do not share any axis), but share the legend.
Here is my example data:
df <- data.frame(class=paste0('a',1:20),
x1=runif(20),
x2=runif(20),
y1=runif(20),
y2=runif(20))
subplot codes as:
p1 <- ggplot(df,aes(x=x1,y=y1))+
geom_point(aes(color=class),size=2,show.legend=TRUE)+
stat_smooth(method='lm',color='black')+
theme_bw()
p2 <- ggplot(df,aes(x=x2,y=y2))+
geom_point(aes(color=class),size=2,show.legend=TRUE)+
stat_smooth(method='lm',color='black')+
theme_bw()
I try to plot two graphic x1-y1 and x2-y2, and they share point class.
The plot I expected show as follows:
ggplot2
How to plot several subplot in one page? each subplot with it's x,y axis (do not share any axis), but share the legend.
Here is my example data:
df <- data.frame(class=paste0('a',1:20),
x1=runif(20),
x2=runif(20),
y1=runif(20),
y2=runif(20))
subplot codes as:
p1 <- ggplot(df,aes(x=x1,y=y1))+
geom_point(aes(color=class),size=2,show.legend=TRUE)+
stat_smooth(method='lm',color='black')+
theme_bw()
p2 <- ggplot(df,aes(x=x2,y=y2))+
geom_point(aes(color=class),size=2,show.legend=TRUE)+
stat_smooth(method='lm',color='black')+
theme_bw()
I try to plot two graphic x1-y1 and x2-y2, and they share point class.
The plot I expected show as follows:
ggplot2
ggplot2
edited Nov 20 '18 at 13:16
Cobin
asked Nov 20 '18 at 12:47


CobinCobin
333111
333111
Could you share the code used to produce the above plots? It's otherwise unclear what your intention is except having two subplots.
– NelsonGon
Nov 20 '18 at 12:58
@NelsonGon I have update plot that I expected.
– Cobin
Nov 20 '18 at 13:14
add a comment |
Could you share the code used to produce the above plots? It's otherwise unclear what your intention is except having two subplots.
– NelsonGon
Nov 20 '18 at 12:58
@NelsonGon I have update plot that I expected.
– Cobin
Nov 20 '18 at 13:14
Could you share the code used to produce the above plots? It's otherwise unclear what your intention is except having two subplots.
– NelsonGon
Nov 20 '18 at 12:58
Could you share the code used to produce the above plots? It's otherwise unclear what your intention is except having two subplots.
– NelsonGon
Nov 20 '18 at 12:58
@NelsonGon I have update plot that I expected.
– Cobin
Nov 20 '18 at 13:14
@NelsonGon I have update plot that I expected.
– Cobin
Nov 20 '18 at 13:14
add a comment |
1 Answer
1
active
oldest
votes
Simply write the following code at the end:
grid.arrange(p1,p2,nrow=2)
The only problem is that you'd have to content with two legends. You could somehow set show.legend=FALSE
for p1
and then tweak its plot margins to make it look like p2
.
Result with both legends:
Result with legend shown for p2 only:
Yes. It done. It would be perfect that ajusted same plot size except legend.
– Cobin
Nov 20 '18 at 14:01
1
the package cowplot can help - look at the get_legend function
– Richard Telford
Nov 20 '18 at 15:54
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%2f53393335%2fggplot-plot-multi-plot-in-one-page%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Simply write the following code at the end:
grid.arrange(p1,p2,nrow=2)
The only problem is that you'd have to content with two legends. You could somehow set show.legend=FALSE
for p1
and then tweak its plot margins to make it look like p2
.
Result with both legends:
Result with legend shown for p2 only:
Yes. It done. It would be perfect that ajusted same plot size except legend.
– Cobin
Nov 20 '18 at 14:01
1
the package cowplot can help - look at the get_legend function
– Richard Telford
Nov 20 '18 at 15:54
add a comment |
Simply write the following code at the end:
grid.arrange(p1,p2,nrow=2)
The only problem is that you'd have to content with two legends. You could somehow set show.legend=FALSE
for p1
and then tweak its plot margins to make it look like p2
.
Result with both legends:
Result with legend shown for p2 only:
Yes. It done. It would be perfect that ajusted same plot size except legend.
– Cobin
Nov 20 '18 at 14:01
1
the package cowplot can help - look at the get_legend function
– Richard Telford
Nov 20 '18 at 15:54
add a comment |
Simply write the following code at the end:
grid.arrange(p1,p2,nrow=2)
The only problem is that you'd have to content with two legends. You could somehow set show.legend=FALSE
for p1
and then tweak its plot margins to make it look like p2
.
Result with both legends:
Result with legend shown for p2 only:
Simply write the following code at the end:
grid.arrange(p1,p2,nrow=2)
The only problem is that you'd have to content with two legends. You could somehow set show.legend=FALSE
for p1
and then tweak its plot margins to make it look like p2
.
Result with both legends:
Result with legend shown for p2 only:
answered Nov 20 '18 at 13:54


iouraichiouraich
1,07632133
1,07632133
Yes. It done. It would be perfect that ajusted same plot size except legend.
– Cobin
Nov 20 '18 at 14:01
1
the package cowplot can help - look at the get_legend function
– Richard Telford
Nov 20 '18 at 15:54
add a comment |
Yes. It done. It would be perfect that ajusted same plot size except legend.
– Cobin
Nov 20 '18 at 14:01
1
the package cowplot can help - look at the get_legend function
– Richard Telford
Nov 20 '18 at 15:54
Yes. It done. It would be perfect that ajusted same plot size except legend.
– Cobin
Nov 20 '18 at 14:01
Yes. It done. It would be perfect that ajusted same plot size except legend.
– Cobin
Nov 20 '18 at 14:01
1
1
the package cowplot can help - look at the get_legend function
– Richard Telford
Nov 20 '18 at 15:54
the package cowplot can help - look at the get_legend function
– Richard Telford
Nov 20 '18 at 15:54
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%2f53393335%2fggplot-plot-multi-plot-in-one-page%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
Could you share the code used to produce the above plots? It's otherwise unclear what your intention is except having two subplots.
– NelsonGon
Nov 20 '18 at 12:58
@NelsonGon I have update plot that I expected.
– Cobin
Nov 20 '18 at 13:14