0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

pythonで機械学習を勉強してみる1

Last updated at Posted at 2023-07-26

環境の用意

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()

スクリーンショット 2023-07-26 15.36.01.png

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?