環境の用意
https://www.anaconda.com/download
からpythonの実行環境をインストール
インストール後
インストール後にターミナルプロンプト(PS1)に (base)という文字列が追加される
邪魔なので下記コマンドで削除
$ conda config --set changeps1 False
実行環境立ち上げ
実行環境である、jupyter notebookを立ち上げる
$ jupyter notebook
テスト実行
pythonは簡単にグラフ描画ができるライブラリなどが充実している
立ち上がったjupyter notebookで新規PJを作成し、以下のテストコードで線グラフと棒グラフが描画されることを確認
import numpy as np
import matplotlib.pyplot as plt
np.random.seed(1)
x = np.arange(10)
y = np.random.randint(1, 1000, 10)
plt.plot(x, y)
plt.show()
x = np.array([1, 2, 3, 4, 5])
y = np.random.randint(1, 1000, 5)
plt.bar(x, y)
plt.show()