ggplot plot multi-plot in one page












0















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:



enter image description here










share|improve this question

























  • 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
















0















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:



enter image description here










share|improve this question

























  • 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














0












0








0








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:



enter image description here










share|improve this question
















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:



enter image description here







ggplot2






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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



















  • 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












1 Answer
1






active

oldest

votes


















1














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: Two_legend
Result with legend shown for p2 only: One_legend






share|improve this answer
























  • 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











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
});


}
});














draft saved

draft discarded


















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









1














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: Two_legend
Result with legend shown for p2 only: One_legend






share|improve this answer
























  • 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
















1














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: Two_legend
Result with legend shown for p2 only: One_legend






share|improve this answer
























  • 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














1












1








1







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: Two_legend
Result with legend shown for p2 only: One_legend






share|improve this answer













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: Two_legend
Result with legend shown for p2 only: One_legend







share|improve this answer












share|improve this answer



share|improve this answer










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



















  • 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


















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

Npm cannot find a required file even through it is in the searched directory

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith