Message Boards Message Boards

0
|
1858 Views
|
4 Replies
|
1 Total Likes
View groups...
Share
Share this post:

Can I combine Show with GraphicsRow?

Posted 3 years ago

Hi guys,

the 1st step of my math model is combine model curve with experimental curve for each of the conditions I had to test. For this I am using Show[Model, Experimental], like:

    ADJGrafico241 = Show[ListPlot[ADJdataModelTHEO241, 
PlotLegends -> {"24h_1%_MOD"},PlotStyle -> {Blue, Dashed}], CurvaExp241]

It is perfect, showing one curve over the other.

But I have to do this 3 times, like ADJGrafico241, ADJGrafico242, ADJGrafico243. After ploting 3-Show-OverlapingCurves-Graphics, I wanna to present then one aside the other. For that, I am doing:

GraphicsRow[ADJGrafico241, ADJGrafico242, ADJGrafico243]

And I think it is not working because the output is: enter image description here

Can I combine those? Because I really need to have a graphic with one curve overlapping the other. And to better visualize the 3 graphics I thought to put one in the side of the other.

A appreciate your help and time.

POSTED BY: silvia daou
4 Replies

The problem may be a wrong syntax: according to the documentation, GraphicsRow takes a list of graphics, as in GraphicsRow[{g1,g2,...}].

POSTED BY: Gianluca Gorni
Posted 3 years ago

Thanks so much for the explanation!!! It worked now :)

POSTED BY: silvia daou
Posted 3 years ago

Hi Silvia,

GraphicsRow requires a List of Graphics

GraphicsRow[{g1, g2, ... }]

Also in the image above ADJGrafico242 is colored in blue which means it is not defined.

POSTED BY: Rohit Namjoshi
Posted 3 years ago

the blue was just to simplify the image! Thanks so much for the explanation!!!

POSTED BY: silvia daou
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard

Group Abstract Group Abstract