10

Given some data frame we can easily plot the histogram for each column in a notebook like so:

import pandas as pd
import numpy as np

df = pd.DataFrame(np.random.randint(0,100,size=(100, 4)), columns=list('ABCD'))
df.hist()

But instead of having one plot per column is it possible to plot it in one plot the same way tensorboard does it?

enter image description here

Is a 3D histogram the best we can do? Maybe using something different then matplotlib?

meW
  • 3,652
  • 6
  • 24
KIC
  • 5,648
  • 6
  • 50
  • 94

0 Answers0