-1

Is it possible to combine multiple plots in a single image in gonum/plot? They should have their own axes. Is it possible to stack them vertically, horizontally or probably in a grid?

In matplotlib it would look like this. Subplots

Igor Mikushkin
  • 1,250
  • 16
  • 25
  • Please provide a [Minimal, Complete, and Verifiable example](https://stackoverflow.com/help/mcve) showing what you've tried and explaining specifically what was wrong with the result. – Adrian Nov 29 '17 at 16:49
  • @Adrian, I'm asking if library has specific feature. It is not documented but probably there is a way to do it. I have no problem with my code. So I guess your suggestion is inappropriate here. – Igor Mikushkin Nov 29 '17 at 17:46
  • @IgorMikushkin: I would try the gonum mailing before SO – JimB Nov 29 '17 at 20:39

1 Answers1

1

You can do this using plot.Align.

Also have a look at the example code I posted to your issue Multiple line plots sharing abscissas axis in gonum/plot. The code is applicable to this issue as well.

pplcc
  • 71
  • 4