「 投稿者アーカイブ:seyanen 」 一覧

no image

matplotlib で、縦横の線(グリッド)を描く方法

2021/06/11   -matplotlib, python3
 ,

pyplot grid で縦横線(罫線のようなもの)を引くことができる。 例 from matplotlib import pyplot as plt data_x = [25,26,27] …

no image

matplotlib で、凡例を表示する方法

2021/06/11   -matplotlib, python3
 ,

データに label を関連付け、plt.legend() で凡例を表示する。 例 from matplotlib import pyplot as plt data_x = [25,26,2 …

no image

matplotlib で、グラフの線の幅を変更する方法

2021/06/11   -matplotlib, python3
 ,

lw で、線幅を数字で指定すればよい。 例 from matplotlib import pyplot as plt data_x = [25,26,27] data_y = [39, …

no image

matplotlib で、グラフの点の見た目を変更する方法

2021/06/11   -matplotlib, python3
 ,

「marker」で指定すればよい。 次のページを参考に、plotの「marker」を変更する。 https://matplotlib.org/stable/api/markers_api.html 例 …

no image

matplotlib で、2種類のデータをプロットする方法

2021/06/10   -matplotlib
 

下では、凡例(legend)を設定している。 例 from matplotlib import pyplot as plt data_x = [25,26,27] data_y = [ …

no image

matplotlib で、2次関数のグラフを描画する方法

2021/06/10   -matplotlib
 ,

2次関数のグラフを表示するには次のようにする。 例 import matplotlib.pyplot as plt import numpy as np # numpy linspace 等間隔な数列 …

no image

python3 で、dictionary のキー一覧を取得する方法

2021/06/10   -python3
 ,

dict.keys() でキーを取得することができる。 参考:dictionary の値一覧を取得するときは、dict.values() を使う。 例 print(dict.keys())

no image

tex で、集合の元でないことを表現する方法

2021/04/15   -tex
 

\not \in を使う。 例 x \not \in A 結果

no image

最大サイズを指定して、画像をまとめてリサイズする方法(mogrify コマンド)

2021/04/15   -画像
 

imageMagick の mogrify コマンドを使う。 例(*.jpg ファイルを jpeg ファイルにまとめてリサイズする) mogrify -format jpeg -resize 900 …

no image

python3 で、フォルダがなければ作成するプログラム

2021/04/15   -python3
 ,

os.mkdir() 関数を使う。 すでにフォルダが存在している場合は、エラーを表示する。 例 import os folder_name = ‘./python_create_folder’ try …