51学通信论坛2017新版

标题: 读取CSV内容并用matplotlib做可视化 [打印本页]

作者: admin    时间: 2019-6-29 20:17
标题: 读取CSV内容并用matplotlib做可视化
读取CSV内容并用matplotlib做可视化:360行、24列的CSV数据,读取其中的360行,和3列(日期、最高温、最低温),然后可视化输出。
源码和文件:
[attach]5809[/attach]
[attach]5810[/attach]
  1. import csv
  2. from datetime import datetime

  3. from matplotlib import pyplot as plt

  4. # Get dates, high, and low temperatures from file.
  5. filename = 'death_valley_2014.csv'
  6. with open(filename) as f:
  7.     reader = csv.reader(f)
  8.     header_row = next(reader)

  9.     dates, highs, lows = [], [], []
  10.     for row in reader:
  11.         try:
  12.             current_date = datetime.strptime(row[0], "%Y-%m-%d")
  13.             high = int(row[1])
  14.             low = int(row[3])
  15.         except ValueError:
  16.             print(current_date, 'missing data')
  17.         else:
  18.             dates.append(current_date)
  19.             highs.append(high)
  20.             lows.append(low)

  21. # Plot data.
  22. fig = plt.figure(dpi=128, figsize=(10, 6))
  23. plt.plot(dates, highs, c='red', alpha=0.5)
  24. plt.plot(dates, lows, c='blue', alpha=0.5)
  25. plt.fill_between(dates, highs, lows, facecolor='blue', alpha=0.1)

  26. # Format plot.
  27. title = "Daily high and low temperatures - 2014\nDeath Valley, CA"
  28. plt.title(title, fontsize=20)
  29. plt.xlabel('', fontsize=16)
  30. fig.autofmt_xdate()
  31. plt.ylabel("Temperature (F)", fontsize=16)
  32. plt.tick_params(axis='both', which='major', labelsize=16)

  33. plt.show()
复制代码
执行结果:
[attach]5811[/attach]









欢迎光临 51学通信论坛2017新版 (http://bbs.51xuetongxin.com/) Powered by Discuz! X3