タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

matplotlibとpythonに関するkimihitoのブックマーク (3)

  • Matplotlib: Python plotting — Matplotlib 2.0.0 documentation

    Runn is a modern resource and capacity planning platform that gets remote teams on the same page. Runn is best suited for project managers, operations leads, resourcing managers and other people responsible for project delivery. Runn has a modern and easy-to-use interface that provides your team with a shared view of all the people and projects in your organization. Plan new work alongside existin

  • matplotlibで等高線やら何やらのプロット - たこ焼き食べた.net

    今回は等高線や、疑似カラープロット(?)に挑戦です。 今までと違い、x, yのデータの他にz方向のデータを持っています。 以前のお話はこちら matplotlibでグラフを書く - たこ焼きべた.net 疑似カラープロット(?) 行列の作り方 これは以下の等高線などでも使う知識なので重要です。 今回挑戦するx, y, zの3軸の情報を持つグラフは、今までと若干行列の与え方が異なります。 例えば、5*5の行列をプロットするとすると以下の行列が必要となります。 このように、x, y, zがそれぞれ、5*5の情報を持つ必要があります。 通常、x, y, zは x = arange(5) y = arange(5) Z = array([[24, 32, 12, 16, 21], [23, 24, 25, 26, 27], [43, 36, 32, 26, 25], [30, 32, 25, 2

    matplotlibで等高線やら何やらのプロット - たこ焼き食べた.net
  • matplotlibを使う - たこ焼き食べた.net

    前回は、numpyで行列を扱いました。 今回は、matploblibで折れ線グラフを書きます。 軸の名前とか色とかそういうグラフの体裁周りの話はまた今度書きます。 他のヒストグラムとかも次回にします。 以前のお話はこちら matplotlibでグラフを書く - たこ焼きべた.net はじめに(pylabとmatplotlib) グラフの描画にはmatplotlibというライブラリを用います。 これには、pylabというモジュールが用意されています。 これは、 matplotlib.pyplot内にあるプロット用の関数 numpyの関数 matplotlib.mlabにある関数 を提供しているので非常に使い勝手が良いです。 というわけで、ここから先、しばらくは、 from pylab import * としてpylabをインポートしていきます。 matplotlibのサンプルを見ていると、

    matplotlibを使う - たこ焼き食べた.net
  • 1