我是靠谱客的博主 复杂店员,最近开发中收集的这篇文章主要介绍python打开csv文件绘制折线图_Python入门--利用matplotlib导入csv数据绘制折线图(2)...,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

目标一:制作两个城市最高温和最低温对比图

# 代码如下:

import matplotlib.pyplot as plt

from datetime import datetime

import csv

def get_weather_data(filename, dates, highs, lows):

'''get the highs and lows from a data file'''

with open(filename) as f:

reader = csv.reader(f)

header_row = next(reader)

for row in reader:

try:

current_date = datetime.strptime(row[0], '%Y-%m-%d')

high = int(row[1])

low = int(row[3])

except ValueError:

print(current_date, 'missing data')

else:

dates.append(current_date)

highs.append(high)

lows.append(low)

# Get weather data for Sitka

dates, highs, lows = [], [], []

get_weather_data('sitka_weather_2014.csv', dates, highs, lows)

# Plot weather data for Sitka

fig = plt.figure(dpi=

最后

以上就是复杂店员为你收集整理的python打开csv文件绘制折线图_Python入门--利用matplotlib导入csv数据绘制折线图(2)...的全部内容,希望文章能够帮你解决python打开csv文件绘制折线图_Python入门--利用matplotlib导入csv数据绘制折线图(2)...所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部