ヒストグラムを描くには、data_hist を使う。
ヒストグラムの縦棒の数は bins で指定する。
例
from matplotlib import pyplot as plt
data_hist = [25,26,27,27,20,21,20,28,29,40,25,21,21,41]
plt.hist(data_hist, bins=10, edgecolor='blue')
plt.show()
雑記
投稿日:
ヒストグラムを描くには、data_hist を使う。
ヒストグラムの縦棒の数は bins で指定する。
from matplotlib import pyplot as plt
data_hist = [25,26,27,27,20,21,20,28,29,40,25,21,21,41]
plt.hist(data_hist, bins=10, edgecolor='blue')
plt.show()
執筆者:seyanen
関連記事
凡例(legend)の表示位置を変更するには、axis の legend の loc を設定する。 次のリンクhttps://matplotlib.org/stable/api/_as_gen/mat …
集合にモノを付け足して和集合を作るには、|= 演算子を使う。(python では、集合(set)を波かっこで囲んで表す。) 例 a = {‘東京’} b = {‘大阪’,’千葉’} c = a | b …
pyplot.errorbar を使って設定する。 オプションの詳細は https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.erro …
python3 で、os.environ で環境変数を取得する
環境変数をセットするには、ターミナルで export SOME_VAR=”hello 123″ などとして環境変数(文字列)を設定する。 プログラム(python)内で環境変数を取得するには次のように …
2023/01/18
matplotlib のグラフ作成と gnuplot との対応 比較
2022/10/14
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。