wx + matplotlib Question...

Is there a way to add an histogram to my subplot?

Make sure ax.hold(True) is set, and then call hist after plot

  ax.hold(True)
  ax.plot(something)
  ax.hist(something)

Should work...

JDH