fossasia / visdom

A flexible tool for creating, organizing, and sharing visualizations of live, rich data. Supports Torch and Numpy.
Apache License 2.0
10.04k stars 1.13k forks source link

Draw multiple subgraphs of histogram #867

Open luokang6 opened 2 years ago

luokang6 commented 2 years ago

I want to draw multiple subgraphs (e.g., (3, 3)) of histogram with using vis.histogram. Could it output a histogram with uing vis.histogram to plt.subplots(3, 3) for drawing multiple subgraphs (e.g., (3, 3))? Or Visdom comes with a function that draws multiple subgraphs of histogram ?

da-h commented 2 years ago

Hey there,

something like matplotlib-subgraphs are currently not included in visdom.

The current way to go for multiple plots side-by-side is probably to either

Note: True matplotlib-support is also on the roadmap (see #119), but not yet implemented. However, there are also some ideas how to accomplish matplotlib-support in your project using low-level visdom-methods.

Best, da-h