当前位置:   article > 正文

Python爬取天气数据及可视化分析!_天气数据可视化分析

天气数据可视化分析
天气预报我们每天都会关注,我们可以根据未来的天气增减衣物、安排出行,每天的气温、风速风向、相对湿度、空气质量等成为关注的焦点。本次使用python中requests和BeautifulSoup库对中国天气网当天和未来14天的数据进行爬取,保存为csv文件,之后用matplotlib、numpy、pandas对数据进行可视化处理和分析,得到温湿度度变化曲线、空气质量图、风向雷达图等结果,为获得未来天气信息提供了有效方法。

1、数据获取

请求网站链接

首先查看中国天气网的网址:http://www.weather.com.cn/weather/101280701.shtml这里就访问本地的天气网址,如果想爬取不同的地区只需修改最后的101280701地区编号即可,前面的weather代表是7天的网页,weather1d代表当天,weather15d代表未来14天。这里就主要访问7天和14天的中国天气网。采用requests.get()方法,请求网页,如果成功访问,则得到的是网页的所有字符串文本。这就是请求过程。

  1. def getHTMLtext(url):     
  2.  """请求获得网页内容"""
  3.  try:         
  4.   r = requests.get(url, timeout = 30)         
  5.   r.raise_for_status()         
  6.   r.encoding = r.apparent_encoding         
  7.   print("成功访问")         
  8.   return r.text     
  9.  except:         
  10.   print("访问错误")         
  11.   return" "

提取有用信息

这里采用BeautifulSoup库对刚刚获取的字符串进行数据提取,首先对网页进行检查,找到需要获取数据的标签:

图片

可以发现7天的数据信息在div标签中并且id=“7d”,并且日期、天气、温度、风级等信息都在ul和li标签中,所以我们可以使用BeautifulSoup对获取的网页文本进行查找div标签id=“7d”,找出他包含的所有的ul和li标签,之后提取标签中相应的数据值,保存到对应列表中。

这里要注意一个细节就是有时日期没有最高气温,对于没有数据的情况要进行判断和处理。另外对于一些数据保存的格式也要提前进行处理,比如温度后面的摄氏度符号,日期数字的提取,和风级文字的提取,这需要用到字符查找及字符串切片处理。

  1. def get_content(html):
  2. """处理得到有用信息保存数据文件"""
  3. final = []          # 初始化一个列表保存数据
  4. bs = BeautifulSoup(html, "html.parser")  # 创建BeautifulSoup对象
  5. body = bs.body
  6. data = body.find('div', {'id''7d'})    # 找到div标签且id = 7d

下面爬取当天的数据

  1. data2 = body.find_all('div',{'class':'left-div'})
  2. text = data2[2].find('script').string 
  3. text = text[text.index('=')+1 :-2]   # 移除改var data=将其变为json数据
  4. jd = json.loads(text)
  5. dayone = jd['od']['od2']     # 找到当天的数据
  6. final_day = []           # 存放当天的数据
  7. count = 0
  8. for i in dayone:
  9. temp = []
  10. if count <=23:
  11. temp.append(i['od21'])     # 添加时间
  12. temp.append(i['od22'])     # 添加当前时刻温度
  13. temp.append(i['od24'])     # 添加当前时刻风力方向
  14. temp.append(i['od25'])     # 添加当前时刻风级
  15. temp.append(i['od26'])     # 添加当前时刻降水量
  16. temp.append(i['od27'])     # 添加当前时刻相对湿度
  17. temp.append(i['od28'])     # 添加当前时刻控制质量
  18. #print(temp)
  19. final_day.append(temp)
  20. count = count +1

下面爬取7天的数据

  1. ul = data.find('ul')      # 找到所有的ul标签
  2. li = ul.find_all('li')      # 找到左右的li标签
  3. = 0     # 控制爬取的天数
  4. for day in li:          # 遍历找到的每一个li
  5. if i < 7 and i > 0:
  6. temp = []          # 临时存放每天的数据
  7. date = day.find('h1').string     # 得到日期
  8. date = date[0:date.index('日')]   # 取出日期号
  9. temp.append(date)    
  10. inf = day.find_all('p')      # 找出li下面的p标签,提取第一个p标签的值,即天气
  11. temp.append(inf[0].string)
  12.     tem_low = inf[1].find('i').string   # 找到最低气温
  13.     if inf[1].find('span'is None:   # 天气预报可能没有最高气温
  14.         tem_high = None
  15.     else:
  16.         tem_high = inf[1].find('span').string  # 找到最高气温
  17.     temp.append(tem_low[:-1])
  18.     if tem_high[-1== '℃':
  19.      temp.append(tem_high[:-1])
  20.     else:
  21.      temp.append(tem_high)
  22.     wind = inf[2].find_all('span')  # 找到风向
  23.     for j in wind:
  24.      temp.append(j['title'])
  25.     wind_scale = inf[2].find('i').string # 找到风级
  26.     index1 = wind_scale.index('级')
  27.     temp.append(int(wind_scale[index1-1:index1]))
  28.     final.append(temp)
  29. = i + 1
  30. return final_day,final

同样对于/weather15d:15天的信息,也做同样的处理,这里经过查看后发现他的15天网页中只有8-14天,前面的1-7天在/weather中,这里就分别访问两个网页将爬取得到的数据进行合并得到最终14天的数据。-  前面是未来14天的数据爬取过程,对于当天24小时的天气信息数据,经过查找发现他是一个json数据,可以通过json.loads()

方法获取当天的数据,进而对当天的天气信息进行提取。

图片

保存csv文件

前面将爬取的数据添加到列表中,这里引入csv库,利用f_csv.writerow(header)和f_csv.writerows(data)方法,分别写入表头和每一行的数据,这里将1天和未来14天的数据分开存储,分别保存为weather1.csv和weather14.csv,下面是他们保存的表格图:

图片

图片

2.可视化分析

当天温度变化曲线图

采用matplotlib中plt.plot()方法绘制出一天24小时的温度变化曲线,并用plt.text()方法点出最高温和最低温,并画出平均温度线,下图为温度变化曲线图:(代码见附录)

图片

分析可以发现这一天最高温度为33℃,最低温度为28℃,并且平均温度在20.4℃左右,通过对时间分析,发现昼夜温差5℃,低温分布在凌晨,高温分布在中午到下午的时间段。

当天相对湿度变化曲线图

采用matplotlib中plt.plot()方法绘制出一天24小时的湿度变化曲线,并画出平均相对湿度线,下图为湿度变化曲线图:(代码见附录)

图片

分析可以发现这一天最高相对湿度为86%,最低相对湿度为58℃,并且平均相对湿度在75%左右,通过对时间分析,清晨的湿度比较大,而下午至黄昏湿度较小。

温湿度相关性分析图

经过前面两个图的分析我们可以感觉到温度和湿度之间是有关系的,为了更加清楚直观地感受这种关系,使用plt.scatter()方法将温度为横坐标、湿度为纵坐标,每个时刻的点在图中点出来,并且计算相关系数,下图为结果图:

图片

分析可以发现一天的温度和湿度具有强烈的相关性,他们呈负相关,这就说明他们时间是负相关关系,并且进一步分析,当温度较低时,空气中水分含量较多,湿度自然较高,而温度较高时,水分蒸发,空气就比较干 燥,湿度较低,符合平时气候现象。

空气质量指数柱状图

空气质量指数AQI是定量描述空气质量状况的指数,其数值越大说明空气污染状况越重,对人体健康的危害也就越大。一般将空气质量指数分为6个等级,等级越高说明污染越严重,下面使用plt.bar方法对一天24小时的空气质量进行了柱状图绘制,并且根据6个等级的不同,相应的柱状图的颜色也从浅到深,也表明污染逐步加重,更直观的显示污染情况,并且也将最高和最低的空气质量指数标出,用虚线画出平均的空气质量指数,下图是绘制结果图:

图片

上面这张是南方珠海的控制质量图,可以看出空气质量指数最大也是在健康范围,说明珠海空气非常好,分析可以发现这一天最高空气质量指数达到了35,最低则只有14,并且平均在25左右,通过时间也可以发现,基本在清晨的时候是空气最好的时候(4-9点),在下午是空气污染最严重的时候,所以清晨一般可以去外面呼吸新鲜的空气,那时污染最小。

而下面这个空气质量图是选取的北方的一个城市,可以看到这里的环境远远比不上珠海。

图片

风向风级雷达图

统计一天的风力和风向,由于风力风向使用极坐标的方式展现较好,所以这里采用的是极坐标的方式展现一天的风力风向图,将圆分为8份,每一份代表一个风向,半径代表平均风力,并且随着风级增高,蓝色加深,最后结果如下所示:

图片

分析可以发现这一天西南风最多,平均风级达到了1.75级,东北风也有小部分1.0级,其余空白方向无来风。

未来14天高低温变化曲线图

统计未来14天的高低温度变化,并绘制出他们的变化曲线图,分别用虚线将他们的平均气温线绘制出来,最后结果如下所示:

图片

分析可以发现未来14天高温平均气温为30.5℃,温度还是比较高,但是未来的第8天有降温,需要做好降温准备,低温前面处于平稳趋势,等到第8天开始下降,伴随着高温也下降,整体温度下降,低温平均在27℃左右。

未来14天风向风级雷达图

统计未来14天的风向和平均风力,并和前面一样采用极坐标形式,将圆周分为8个部分,代表8个方向,颜色越深代表风级越高,最后结果如下所示:

图片

分析可以发现未来14天东南风、西南风所占主要风向,风级最高达到了5级,最低的西风平均风级也有3级。

未来14天气候分布饼图

统计未来14天的气候,并求每个气候的总天数,最后将各个气候的饼图绘制出来,结果如下所示:

图片

分析可以发现未来14天气候基本是“雨”、“阴转雨”和“阵雨”,下雨的天数较多,结合前面的气温分布图可以看出在第8-9天气温高温下降,可以推测当天下雨,导致气温下降。

3、结论

1.首先根据爬取的温湿度数据进行的分析,温度从早上低到中午高再到晚上低,湿度和温度的趋势相反,通过相关系数发现温度和湿度有强烈的负相关关系,经查阅资料发现因为随着温度升高水蒸汽蒸发加剧,空气中水分降低湿度降低。当然,湿度同时受气压和雨水的影响,下雨湿度会明显增高。

2.经查阅资料空气质量不仅跟工厂、汽车等排放的烟气、废气等有关,更为重要的是与气象因素有关。由于昼夜温差明显变化,当地面温度高于高空温度时,空气上升,污染物易被带到高空扩散;当地面温度低于一定高度的温度时,天空形成逆温层,它像一个大盖子一样压在地面上空,使地表空气中各种污染物不易扩散。一般在晚间和清晨影响较大,而当太阳出来后,地面迅速升温,逆温层就会逐渐消散,于是污染空气也就扩散了。

3.风是由气压在水平方向分布的不均匀导致的。风受大气环流、地形、水域等不同因素的综合影响,表现形式多种多样,如季风、地方性的海陆风、山谷风等,一天的风向也有不同的变化,根据未来14天的风向雷达图可以发现未来所有风向基本都有涉及,并且没有特别的某个风向,原因可能是近期没有降水和气文变化不大,导致风向也没有太大的变化规律。

4.天气是指某一个地区距离地表较近的大气层在短时间内的具体状态。跟某瞬时内大气中各种气象要素分布的综合表现。根据未来14天的天气和温度变化可以大致推断出某个时间的气候,天气和温度之间也是有联系的。

4、代码框架

代码主要分为weather.py:对中国天气网进行爬取天气数据并保存csv文件;data1_analysis.py:对当天的天气信息进行可视化处理;data14_analysis.py:对未来14天的天气信息进行可视化处理。下面是代码的结构图:

图片

附源代码 

weather.py

  1. # weather.py
  2. import requests
  3. from bs4 import BeautifulSoup
  4. import csv
  5. import json
  6. def getHTMLtext(url):     
  7.  """请求获得网页内容"""
  8.  try:         
  9.   r = requests.get(url, timeout = 30)         
  10.   r.raise_for_status()         
  11.   r.encoding = r.apparent_encoding         
  12.   print("成功访问")         
  13.   return r.text     
  14.  except:         
  15.   print("访问错误")         
  16.   return" " 
  17. def get_content(html):
  18.  """处理得到有用信息保存数据文件"""
  19.  final = []          # 初始化一个列表保存数据
  20.  bs = BeautifulSoup(html, "html.parser")  # 创建BeautifulSoup对象
  21.  body = bs.body
  22.  data = body.find('div', {<!-- -->'id''7d'})    # 找到div标签且id = 7d
  23.  # 下面爬取当天的数据
  24.  data2 = body.find_all('div',{<!-- -->'class':'left-div'})
  25.  text = data2[2].find('script').string  
  26.  text = text[text.index('=')+1 :-2]   # 移除改var data=将其变为json数据
  27.  jd = json.loads(text)
  28.  dayone = jd['od']['od2']     # 找到当天的数据
  29.  final_day = []           # 存放当天的数据
  30.  count = 0
  31.  for i in dayone:
  32.   temp = []
  33.   if count &lt;=23:
  34.    temp.append(i['od21'])     # 添加时间
  35.    temp.append(i['od22'])     # 添加当前时刻温度
  36.    temp.append(i['od24'])     # 添加当前时刻风力方向
  37.    temp.append(i['od25'])     # 添加当前时刻风级
  38.    temp.append(i['od26'])     # 添加当前时刻降水量
  39.    temp.append(i['od27'])     # 添加当前时刻相对湿度
  40.    temp.append(i['od28'])     # 添加当前时刻控制质量
  41.    #print(temp)
  42.    final_day.append(temp)
  43.   count = count +1
  44.  # 下面爬取7天的数据 
  45.  ul = data.find('ul')      # 找到所有的ul标签
  46.  li = ul.find_all('li')      # 找到左右的li标签
  47.  i = 0     # 控制爬取的天数
  48.  for day in li:          # 遍历找到的每一个li
  49.      if i &lt; 7 and i &gt; 0:
  50.          temp = []          # 临时存放每天的数据
  51.          date = day.find('h1').string     # 得到日期
  52.          date = date[0:date.index('日')]   # 取出日期号
  53.          temp.append(date)            
  54.          inf = day.find_all('p')      # 找出li下面的p标签,提取第一个p标签的值,即天气
  55.          temp.append(inf[0].string)
  56.          tem_low = inf[1].find('i').string   # 找到最低气温
  57.          if inf[1].find('span'is None:   # 天气预报可能没有最高气温
  58.              tem_high = None
  59.          else:
  60.              tem_high = inf[1].find('span').string  # 找到最高气温
  61.          temp.append(tem_low[:-1])
  62.          if tem_high[-1== '℃':
  63.           temp.append(tem_high[:-1])
  64.          else:
  65.           temp.append(tem_high)
  66.          wind = inf[2].find_all('span')  # 找到风向
  67.          for j in wind:
  68.           temp.append(j['title'])
  69.          wind_scale = inf[2].find('i').string # 找到风级
  70.          index1 = wind_scale.index('级')
  71.          temp.append(int(wind_scale[index1-1:index1]))
  72.          final.append(temp)
  73.      i = i + 1
  74.  return final_day,final
  75.  #print(final)    
  76. def get_content2(html):
  77.  """处理得到有用信息保存数据文件"""
  78.  final = []                # 初始化一个列表保存数据
  79.  bs = BeautifulSoup(html, "html.parser")        # 创建BeautifulSoup对象
  80.  body = bs.body
  81.  data = body.find('div', {<!-- -->'id''15d'})          # 找到div标签且id = 15d
  82.  ul = data.find('ul')            # 找到所有的ul标签
  83.  li = ul.find_all('li')            # 找到左右的li标签
  84.  final = []
  85.  i = 0                 # 控制爬取的天数
  86.  for day in li:               # 遍历找到的每一个li
  87.      if i &lt; 8:
  88.          temp = []               # 临时存放每天的数据
  89.          date = day.find('span',{<!-- -->'class':'time'}).string    # 得到日期
  90.          date = date[date.index('(')+1:-2]        # 取出日期号
  91.          temp.append(date)  
  92.          weather = day.find('span',{<!-- -->'class':'wea'}).string    # 找到天气
  93.          temp.append(weather)
  94.          tem = day.find('span',{<!-- -->'class':'tem'}).text      # 找到温度
  95.          temp.append(tem[tem.index('/')+1:-1])     # 找到最低气温
  96.          temp.append(tem[:tem.index('/')-1])      # 找到最高气温
  97.          wind = day.find('span',{<!-- -->'class':'wind'}).string    # 找到风向
  98.          if '转' in wind:           # 如果有风向变化
  99.           temp.append(wind[:wind.index('转')])
  100.           temp.append(wind[wind.index('转')+1:])
  101.          else:             # 如果没有风向变化,前后风向一致
  102.           temp.append(wind)
  103.           temp.append(wind)
  104.          wind_scale = day.find('span',{<!-- -->'class':'wind1'}).string    # 找到风级
  105.          index1 = wind_scale.index('级')
  106.          temp.append(int(wind_scale[index1-1:index1]))
  107.           
  108.          final.append(temp)
  109.  return final
  110. def write_to_csv(file_name, dataday=14):
  111.  """保存为csv文件"""
  112.  with open(file_name, 'a', errors='ignore', newline=''as f:
  113.   if day == 14:
  114.    header = ['日期','天气','最低气温','最高气温','风向1','风向2','风级']
  115.   else:
  116.    header = ['小时','温度','风力方向','风级','降水量','相对湿度','空气质量']
  117.   f_csv = csv.writer(f)
  118.   f_csv.writerow(header)
  119.   f_csv.writerows(data)
  120. def main():
  121.  """主函数"""
  122.  print("Weather test")
  123.  # 珠海
  124.  url1 = 'http://www.weather.com.cn/weather/101280701.shtml'    # 7天天气中国天气网
  125.  url2 = 'http://www.weather.com.cn/weather15d/101280701.shtml' # 8-15天天气中国天气网
  126.  
  127.  html1 = getHTMLtext(url1)
  128.  data1data1_7 = get_content(html1)  # 获得1-7天和当天的数据
  129.  html2 = getHTMLtext(url2)
  130.  data8_14 = get_content2(html2)   # 获得8-14天数据
  131.  data14 = data1_7 + data8_14
  132.  #print(data)
  133.  write_to_csv('weather14.csv',data14,14) # 保存为csv文件
  134.  write_to_csv('weather1.csv',data1,1)
  135. if __name__ == '__main__':
  136.  main()

data1_analysis.py:

  1. data1_analysis.py
  2. import matplotlib.pyplot as plt
  3. import numpy as np
  4. import pandas as pd
  5. import math
  6. def tem_curve(data):
  7.  """温度曲线绘制"""
  8.  hour = list(data['小时'])
  9.  tem = list(data['温度'])
  10.  for i in range(0,24):
  11.   if math.isnan(tem[i]) == True:
  12.    tem[i] = tem[i-1]
  13.  tem_ave = sum(tem)/24     # 求平均温度 
  14.  tem_max = max(tem)    
  15.  tem_max_hour = hour[tem.index(tem_max)] # 求最高温度
  16.  tem_min = min(tem)
  17.  tem_min_hour = hour[tem.index(tem_min)] # 求最低温度
  18.  x = []
  19.  y = []
  20.  for i in range(024):
  21.   x.append(i)
  22.   y.append(tem[hour.index(i)])
  23.  plt.figure(1)
  24.  plt.plot(x,y,color='red',label='温度')       # 画出温度曲线
  25.  plt.scatter(x,y,color='red')   # 点出每个时刻的温度点
  26.  plt.plot([024], [tem_ave, tem_ave], c='blue', linestyle='--',label='平均温度')  # 画出平均温度虚线
  27.  plt.text(tem_max_hour+0.15, tem_max+0.15, str(tem_max), ha='center', va='bottom', fontsize=10.5)  # 标出最高温度
  28.  plt.text(tem_min_hour+0.15, tem_min+0.15, str(tem_min), ha='center', va='bottom', fontsize=10.5)  # 标出最低温度
  29.  plt.xticks(x)
  30.  plt.legend()
  31.  plt.title('一天温度变化曲线图')
  32.  plt.xlabel('时间/h')
  33.  plt.ylabel('摄氏度/℃')
  34.  plt.show()
  35. def hum_curve(data):
  36.  """相对湿度曲线绘制"""
  37.  hour = list(data['小时'])
  38.  hum = list(data['相对湿度'])
  39.  for i in range(0,24):
  40.   if math.isnan(hum[i]) == True:
  41.    hum[i] = hum[i-1]
  42.  hum_ave = sum(hum)/24     # 求平均相对湿度 
  43.  hum_max = max(hum)    
  44.  hum_max_hour = hour[hum.index(hum_max)] # 求最高相对湿度
  45.  hum_min = min(hum)
  46.  hum_min_hour = hour[hum.index(hum_min)] # 求最低相对湿度
  47.  x = []
  48.  y = []
  49.  for i in range(024):
  50.   x.append(i)
  51.   y.append(hum[hour.index(i)])
  52.  plt.figure(2)
  53.  plt.plot(x,y,color='blue',label='相对湿度')       # 画出相对湿度曲线
  54.  plt.scatter(x,y,color='blue')   # 点出每个时刻的相对湿度
  55.  plt.plot([024], [hum_ave, hum_ave], c='red', linestyle='--',label='平均相对湿度')  # 画出平均相对湿度虚线
  56.  plt.text(hum_max_hour+0.15, hum_max+0.15, str(hum_max), ha='center', va='bottom', fontsize=10.5)  # 标出最高相对湿度
  57.  plt.text(hum_min_hour+0.15, hum_min+0.15, str(hum_min), ha='center', va='bottom', fontsize=10.5)  # 标出最低相对湿度
  58.  plt.xticks(x)
  59.  plt.legend()
  60.  plt.title('一天相对湿度变化曲线图')
  61.  plt.xlabel('时间/h')
  62.  plt.ylabel('百分比/%')
  63.  plt.show()
  64. def air_curve(data):
  65.  """空气质量曲线绘制"""
  66.  hour = list(data['小时'])
  67.  air = list(data['空气质量'])
  68.  print(type(air[0]))
  69.  for i in range(0,24):
  70.   if math.isnan(air[i]) == True:
  71.    air[i] = air[i-1]
  72.  air_ave = sum(air)/24     # 求平均空气质量 
  73.  air_max = max(air)    
  74.  air_max_hour = hour[air.index(air_max)] # 求最高空气质量
  75.  air_min = min(air)
  76.  air_min_hour = hour[air.index(air_min)] # 求最低空气质量
  77.  x = []
  78.  y = []
  79.  for i in range(024):
  80.   x.append(i)
  81.   y.append(air[hour.index(i)])
  82.  plt.figure(3)
  83.  
  84.  for i in range(0,24):
  85.   if y[i] &lt;= 50:
  86.    plt.bar(x[i],y[i],color='lightgreen',width=0.7)  # 1等级
  87.   elif y[i] &lt;= 100:
  88.    plt.bar(x[i],y[i],color='wheat',width=0.7)   # 2等级
  89.   elif y[i] &lt;= 150:
  90.    plt.bar(x[i],y[i],color='orange',width=0.7)   # 3等级
  91.   elif y[i] &lt;= 200:
  92.    plt.bar(x[i],y[i],color='orangered',width=0.7)  # 4等级
  93.   elif y[i] &lt;= 300:
  94.    plt.bar(x[i],y[i],color='darkviolet',width=0.7)  # 5等级
  95.   elif y[i] &gt; 300:
  96.    plt.bar(x[i],y[i],color='maroon',width=0.7)   # 6等级
  97.  plt.plot([024], [air_ave, air_ave], c='black', linestyle='--')  # 画出平均空气质量虚线
  98.  plt.text(air_max_hour+0.15, air_max+0.15, str(air_max), ha='center', va='bottom', fontsize=10.5)  # 标出最高空气质量
  99.  plt.text(air_min_hour+0.15, air_min+0.15, str(air_min), ha='center', va='bottom', fontsize=10.5)  # 标出最低空气质量
  100.  plt.xticks(x)
  101.  plt.title('一天空气质量变化曲线图')
  102.  plt.xlabel('时间/h')
  103.  plt.ylabel('空气质量指数AQI')
  104.  plt.show()
  105. def wind_radar(data):
  106.  """风向雷达图"""
  107.  wind = list(data['风力方向'])
  108.  wind_speed = list(data['风级'])
  109.  for i in range(0,24):
  110.   if wind[i] == "北风":
  111.    wind[i] = 90
  112.   elif wind[i] == "南风":
  113.    wind[i] = 270
  114.   elif wind[i] == "西风":
  115.    wind[i] = 180
  116.   elif wind[i] == "东风":
  117.    wind[i] = 360
  118.   elif wind[i] == "东北风":
  119.    wind[i] = 45
  120.   elif wind[i] == "西北风":
  121.    wind[i] = 135
  122.   elif wind[i] == "西南风":
  123.    wind[i] = 225
  124.   elif wind[i] == "东南风":
  125.    wind[i] = 315
  126.  degs = np.arange(45,361,45)
  127.  temp = []
  128.  for deg in degs:
  129.   speed = []
  130.   # 获取 wind_deg 在指定范围的风速平均值数据
  131.   for i in range(0,24):
  132.    if wind[i] == deg:
  133.     speed.append(wind_speed[i])
  134.   if len(speed) == 0:
  135.    temp.append(0)
  136.   else:
  137.    temp.append(sum(speed)/len(speed))
  138.  print(temp)
  139.  N = 8
  140.  theta = np.arange(0.+np.pi/8,2*np.pi+np.pi/8,2*np.pi/8)
  141.  # 数据极径
  142.  radii = np.array(temp)
  143.  # 绘制极区图坐标系
  144.  plt.axes(polar=True)
  145.  # 定义每个扇区的RGB值(R,G,B),x越大,对应的颜色越接近蓝色
  146.  colors = [(1-x/max(temp), 1-x/max(temp),0.6for x in radii]
  147.  plt.bar(theta,radii,width=(2*np.pi/N),bottom=0.0,color=colors)
  148.  plt.title('一天风级图',x=0.2,fontsize=20)
  149.  plt.show()
  150. def calc_corr(a, b):
  151.  """计算相关系数"""
  152.  a_avg = sum(a)/len(a)
  153.  b_avg = sum(b)/len(b)
  154.  cov_ab = sum([(x - a_avg)*(y - b_avg) for x,y in zip(a, b)])
  155.  sq = math.sqrt(sum([(x - a_avg)**2 for x in a])*sum([(x - b_avg)**2 for x in b])) 
  156.  corr_factor = cov_ab/sq
  157.  return corr_factor
  158. def corr_tem_hum(data):
  159.  """温湿度相关性分析"""
  160.  tem = data['温度']
  161.  hum = data['相对湿度']
  162.  plt.scatter(tem,hum,color='blue')
  163.  plt.title("温湿度相关性分析图")
  164.  plt.xlabel("温度/℃")
  165.  plt.ylabel("相对湿度/%")
  166.  plt.text(20,40,"相关系数为:"+str(calc_corr(tem,hum)),fontdict={<!-- -->'size':'10','color':'red'})
  167.  plt.show()
  168.  print("相关系数为:"+str(calc_corr(tem,hum)))
  169. def main():
  170.  plt.rcParams['font.sans-serif']=['SimHei'] # 解决中文显示问题
  171.  plt.rcParams['axes.unicode_minus'= False  # 解决负号显示问题
  172.  data1 = pd.read_csv('weather1.csv',encoding='gb2312')
  173.  print(data1)
  174.  tem_curve(data1)
  175.  hum_curve(data1)
  176.  air_curve(data1)
  177.  wind_radar(data1)
  178.  corr_tem_hum(data1)
  179. if __name__ == '__main__':
  180.  main()

data14_analysis.py:

  1. data14_analysis.py
  2. import matplotlib.pyplot as plt
  3. import numpy as np
  4. import pandas as pd
  5. import math
  6. def tem_curve(data):
  7.  """温度曲线绘制"""
  8.  date = list(data['日期'])
  9.  tem_low = list(data['最低气温'])
  10.  tem_high = list(data['最高气温'])
  11.  for i in range(0,14):
  12.   if math.isnan(tem_low[i]) == True:
  13.    tem_low[i] = tem_low[i-1]
  14.   if math.isnan(tem_high[i]) == True:
  15.    tem_high[i] = tem_high[i-1]
  16.  tem_high_ave = sum(tem_high)/14     # 求平均高温 
  17.  tem_low_ave = sum(tem_low)/14     # 求平均低温 
  18.  
  19.  tem_max = max(tem_high)    
  20.  tem_max_date = tem_high.index(tem_max)   # 求最高温度
  21.  tem_min = min(tem_low)
  22.  tem_min_date = tem_low.index(tem_min)   # 求最低温度
  23.  x = range(1,15)
  24.  plt.figure(1)
  25.  plt.plot(x,tem_high,color='red',label='高温')    # 画出高温度曲线
  26.  plt.scatter(x,tem_high,color='red')     # 点出每个时刻的温度点
  27.  plt.plot(x,tem_low,color='blue',label='低温')    # 画出低温度曲线
  28.  plt.scatter(x,tem_low,color='blue')     # 点出每个时刻的温度点
  29.  
  30.  plt.plot([115], [tem_high_ave, tem_high_ave], c='black', linestyle='--')  # 画出平均温度虚线
  31.  plt.plot([115], [tem_low_ave, tem_low_ave], c='black', linestyle='--')  # 画出平均温度虚线
  32.  plt.legend()
  33.  plt.text(tem_max_date+0.15, tem_max+0.15, str(tem_max), ha='center', va='bottom', fontsize=10.5)  # 标出最高温度
  34.  plt.text(tem_min_date+0.15, tem_min+0.15, str(tem_min), ha='center', va='bottom', fontsize=10.5)  # 标出最低温度
  35.  plt.xticks(x)
  36.  plt.title('未来14天高温低温变化曲线图')
  37.  plt.xlabel('未来天数/天')
  38.  plt.ylabel('摄氏度/℃')
  39.  plt.show()
  40. def change_wind(wind):
  41.  """改变风向"""
  42.  for i in range(0,14):
  43.   if wind[i] == "北风":
  44.    wind[i] = 90
  45.   elif wind[i] == "南风":
  46.    wind[i] = 270
  47.   elif wind[i] == "西风":
  48.    wind[i] = 180
  49.   elif wind[i] == "东风":
  50.    wind[i] = 360
  51.   elif wind[i] == "东北风":
  52.    wind[i] = 45
  53.   elif wind[i] == "西北风":
  54.    wind[i] = 135
  55.   elif wind[i] == "西南风":
  56.    wind[i] = 225
  57.   elif wind[i] == "东南风":
  58.    wind[i] = 315
  59.  return wind
  60. def wind_radar(data):
  61.  """风向雷达图"""
  62.  wind1 = list(data['风向1'])
  63.  wind2 = list(data['风向2'])
  64.  wind_speed = list(data['风级'])
  65.  wind1 = change_wind(wind1)
  66.  wind2 = change_wind(wind2)
  67.  
  68.  degs = np.arange(45,361,45)
  69.  temp = []
  70.  for deg in degs:
  71.   speed = []
  72.   # 获取 wind_deg 在指定范围的风速平均值数据
  73.   for i in range(0,14):
  74.    if wind1[i] == deg:
  75.     speed.append(wind_speed[i])
  76.    if wind2[i] == deg:
  77.     speed.append(wind_speed[i])
  78.   if len(speed) == 0:
  79.    temp.append(0)
  80.   else:
  81.    temp.append(sum(speed)/len(speed))
  82.  print(temp)
  83.  N = 8
  84.  theta = np.arange(0.+np.pi/8,2*np.pi+np.pi/8,2*np.pi/8)
  85.  # 数据极径
  86.  radii = np.array(temp)
  87.  # 绘制极区图坐标系
  88.  plt.axes(polar=True)
  89.  # 定义每个扇区的RGB值(R,G,B),x越大,对应的颜色越接近蓝色
  90.  colors = [(1-x/max(temp), 1-x/max(temp),0.6for x in radii]
  91.  plt.bar(theta,radii,width=(2*np.pi/N),bottom=0.0,color=colors)
  92.  plt.title('未来14天风级图',x=0.2,fontsize=20)
  93.  plt.show()
  94. def weather_pie(data):
  95.  """绘制天气饼图"""
  96.  weather = list(data['天气'])
  97.  dic_wea = {<!-- --> }
  98.  for i in range(0,14):
  99.   if weather[i] in dic_wea.keys():
  100.    dic_wea[weather[i]] += 1
  101.   else:
  102.    dic_wea[weather[i]] = 1
  103.  print(dic_wea)
  104.  explode=[0.01]*len(dic_wea.keys())
  105.  color = ['lightskyblue','silver','yellow','salmon','grey','lime','gold','red','green','pink']
  106.  plt.pie(dic_wea.values(),explode=explode,labels=dic_wea.keys(),autopct='%1.1f%%',colors=color)
  107.  plt.title('未来14天气候分布饼图')
  108.  plt.show()
  109. def main():
  110.  plt.rcParams['font.sans-serif']=['SimHei'] # 解决中文显示问题
  111.  plt.rcParams['axes.unicode_minus'= False  # 解决负号显示问题
  112.  data14 = pd.read_csv('weather14.csv',encoding='gb2312')
  113.  print(data14)
  114.  tem_curve(data14)
  115.  wind_radar(data14)
  116.  weather_pie(data14)
  117. if __name__ == '__main__':
  118.  main()

 更多精彩教程欢迎B站搜索“千锋教育”

千锋教育Python全套视频教程,轻松掌握Excel、Word、PPT、邮件、爬虫、office办公自动化(宋如宁主讲)

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/362813
推荐阅读
相关标签
  

闽ICP备14008679号