Is there a way of plotting multiple histograms like tensorboard in plotly?
Given randomly generated data:
import pandas as pd
import numpy as np
df = pd.DataFrame(np.random.randint(0,100,size=(100, 4)), columns=list('ABCD'))
df.hist()
Can I βstackβ the histograms such that they will come one after the other, and not as shown in the histograms tutorial where the different histograms are one next to the other, or on top one another.
Thanks.