2018年9月8日土曜日

開発環境

  • macOS High Sierra - Apple
  • Emacs (Text Editor)
  • Python 3.7 (プログラミング言語)

Pythonからはじめる数学入門 (Amit Saha (著)、黒川 利明 (翻訳)、オライリージャパン)の2章(データをグラフで可視化する)、2.6(プログラミングチャレンジ)、問題2-1(1日の間に気温はどのように変化するか)を取り組んでみる。

コード(Emacs)

Python 3

#!/usr/bin/env python3
import matplotlib.pyplot as plt

temps_new_york = [22, 21, 23, 24, 23, 20, 19, 18]
temps_tokyo = [28, 27, 26, 36, 26, 30, 31, 30]
times = ['7:00 AM', '10:00 AM', '1:00 PM', '4:00 PM',
         '7:00 PM', '10:00 PM', '1:00 AM', '4:00 AM']

plt.plot(times, temps_new_york, times, temps_tokyo)

plt.legend(['New York', 'Tokyo'])
plt.savefig('sample1.svg')

入出力結果(Terminal, Jupyter(IPython))

$ ./sample1.py
$

0 コメント:

コメントを投稿