matplotlibに関するmunekeのブックマーク (2)

  • MatPlotLib - py2exe.org

    Introduction MatPlotLib is a module to produce nice-looking plots in Python using a wide variety of back-end packages, at least one of which is likely to be available for your system. Data Files matplotlib requires some data files: 1 import matplotlib 2 ... 3 setup( 4 ... 5 data_files=matplotlib.get_py2exe_datafiles(), 6 ) (This works for recent versions of matplotlib; for older versions, see this

  • matplotlibをwxPythonで扱う - white wheelsのメモ

    matplotlibで描いたグラフをwxPythonのパネル上に表示できると、matplotlibの機能を直接利用できるアプリケーションを作成することができます。次のコードは、3次元のグラフをパネル上にプロットさせて表示させた例です。 import matplotlib matplotlib.interactive( True ) matplotlib.use( 'WXAgg' ) import wx class myWxPlot(wx.Panel): def __init__( self, parent): from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg from matplotlib.figure import Figure self.parent = parent wx.Panel.__init__( s

    matplotlibをwxPythonで扱う - white wheelsのメモ
  • 1