91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python如何讀取CSV文件并進行數據可視化繪圖

發布時間:2022-06-17 09:14:34 來源:億速云 閱讀:1264 作者:iii 欄目:開發技術

這篇文章主要講解了“Python如何讀取CSV文件并進行數據可視化繪圖”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Python如何讀取CSV文件并進行數據可視化繪圖”吧!

介紹:文件 sitka_weather_07-2018_simple.csv是阿拉斯加州錫特卡2018年1月1日的天氣數據,其中包含當天的最高溫度和最低溫度。數據文件存儲與data文件夾下,接下來用Python讀取該文件數據,再基于數據進行可視化繪圖。

sitka_highs.py

import csv  # 導入csv模塊
from datetime import datetime
import matplotlib.pyplot as plt
filename = 'data/sitka_weather_07-2018_simple.csv'
with open(filename) as f:
    reader = csv.reader(f)
    header_row = next(reader)  # 返回文件的下一行,在這便是首行,即文件頭
  # for index, column_header in enumerate(header_row):  # 對列表調用了 enumerate()來獲取每個元素的索引及其值,方便我們提取需要的數據列
  #     print(index, column_header)
 
    # 從文件中獲取最高溫度
    dates, highs = [], []
    for row in reader:
        current_date = datetime.strptime(row[2], '%Y-%m-%d')
        high = int(row[5])
        dates.append(current_date)
        highs.append(high)
 
# 根據最高溫度繪制圖形
plt.style.use('seaborn')
fig, ax = plt.subplots()
ax.plot(dates, highs, c='red')
# 設置圖形的格式
ax.set_title("2018年7月每日最高溫度", fontproperties="SimHei", fontsize=24)
ax.set_xlabel('', fontproperties="SimHei", fontsize=16)
fig.autofmt_xdate()
ax.set_ylabel("溫度(F)", fontproperties="SimHei", fontsize=16)
ax.tick_params(axis='both', which='major', labelsize=16)
plt.show()

運行結果如下:

Python如何讀取CSV文件并進行數據可視化繪圖

 設置以上圖標后,我們來添加更多的數據,生成一副更復雜的錫特卡天氣圖。將sitka_weather_2018_simple.csv數據文件置于data文件夾下,該文件包含整年的錫特卡天氣數據。

對代碼進行修改:

sitka_highs.py

import csv  # 導入csv模塊
from datetime import datetime
import matplotlib.pyplot as plt
filename = 'data/sitka_weather_2018_simple.csv'
with open(filename) as f:
    reader = csv.reader(f)
    header_row = next(reader)  # 返回文件的下一行,在這便是首行,即文件頭
 
  # for index, column_header in enumerate(header_row):  # 對列表調用了 enumerate()來獲取每個元素的索引及其值,方便我們提取需要的數據列
  #     print(index, column_header)
 
    # 從文件中獲取最高溫度
    dates, highs = [], []
    for row in reader:
        current_date = datetime.strptime(row[2], '%Y-%m-%d')
        high = int(row[5])
        dates.append(current_date)
        highs.append(high)
 
# 根據最高溫度繪制圖形
plt.style.use('seaborn')
fig, ax = plt.subplots()
ax.plot(dates, highs, c='red')
# 設置圖形的格式
ax.set_title("2018年每日最高溫度", fontproperties="SimHei", fontsize=24)
ax.set_xlabel('', fontproperties="SimHei", fontsize=16)
fig.autofmt_xdate()
ax.set_ylabel("溫度(F)", fontproperties="SimHei", fontsize=16)
ax.tick_params(axis='both', which='major', labelsize=16)
plt.show()

運行結果如下:

Python如何讀取CSV文件并進行數據可視化繪圖

代碼再改進:雖然上圖已經顯示了豐富的數據,但是還能再添加最低溫度數據,使其更有用

對代碼進行修改:

sitka_highs_lows.py

import csv  # 導入csv模塊
from datetime import datetime
import matplotlib.pyplot as plt
filename = 'data/sitka_weather_2018_simple.csv'
with open(filename) as f:
    reader = csv.reader(f)
    header_row = next(reader)  # 返回文件的下一行,在這便是首行,即文件頭
 
  # for index, column_header in enumerate(header_row):  # 對列表調用了 enumerate()來獲取每個元素的索引及其值,方便我們提取需要的數據列
  #     print(index, column_header)
 
    # 從文件中獲取日期、最高溫度和最低溫度
    dates, highs, lows = [], [], []
    for row in reader:
        current_date = datetime.strptime(row[2], '%Y-%m-%d')
        high = int(row[5])
        low = int(row[6])
        dates.append(current_date)
        highs.append(high)
        lows.append(low)
 
# 根據最高溫度和最低溫度繪制圖形
plt.style.use('seaborn')
fig, ax = plt.subplots()
ax.plot(dates, highs, c='red', alpha=0.5)  # alpha指定顏色的透明度,0為完全透明
ax.plot(dates, lows, c='blue', alpha=0.5)
ax.fill_between(dates, highs, lows, facecolor='blue',alpha=0.1)
 
# 設置圖形的格式
ax.set_title("2018年每日最高溫度", fontproperties="SimHei", fontsize=24)
ax.set_xlabel('', fontproperties="SimHei", fontsize=16)
fig.autofmt_xdate()
ax.set_ylabel("溫度(F)", fontproperties="SimHei", fontsize=16)
ax.tick_params(axis='both', which='major', labelsize=16)
plt.show()

運行結果如下:

Python如何讀取CSV文件并進行數據可視化繪圖

此外,讀取CSV文件過程中,數據可能缺失,程序運行時就會報錯甚至崩潰。所有需要在從CSV文件中讀取值時執行錯誤檢查代碼,對可能的異常進行處理,更換數據文件為:death_valley_2018_simple.csv  ,該文件有缺失值。

Python如何讀取CSV文件并進行數據可視化繪圖

對代碼進行修改:

 death_valley_highs_lows.py

import csv  # 導入csv模塊
from datetime import datetime
import matplotlib.pyplot as plt
filename = 'data/death_valley_2018_simple.csv'
with open(filename) as f:
    reader = csv.reader(f)
    header_row = next(reader)  # 返回文件的下一行,在這便是首行,即文件頭
 
  # for index, column_header in enumerate(header_row):  # 對列表調用了 enumerate()來獲取每個元素的索引及其值,方便我們提取需要的數據列
  #     print(index, column_header)
 
    # 從文件中獲取日期、最高溫度和最低溫度
    dates, highs, lows = [], [], []
    for row in reader:
        current_date = datetime.strptime(row[2], '%Y-%m-%d')
        try:
            high = int(row[5])
            low = int(row[6])
        except ValueError:
            print(f"Missing data for {current_date}")
        else:
            dates.append(current_date)
            highs.append(high)
            lows.append(low)
 
# 根據最高溫度和最低溫度繪制圖形
plt.style.use('seaborn')
fig, ax = plt.subplots()
ax.plot(dates, highs, c='red', alpha=0.5)  # alpha指定顏色的透明度,0為完全透明
ax.plot(dates, lows, c='blue', alpha=0.5)
ax.fill_between(dates, highs, lows, facecolor='blue',alpha=0.1)
# 設置圖形的格式
ax.set_title("2018年每日最高溫度和最低氣溫\n美國加利福利亞死亡谷", fontproperties="SimHei", fontsize=24)
ax.set_xlabel('', fontproperties="SimHei", fontsize=16)
fig.autofmt_xdate()
ax.set_ylabel("溫度(F)", fontproperties="SimHei", fontsize=16)
ax.tick_params(axis='both', which='major', labelsize=16)
plt.show()

如果現在運行 death_valley_highs_lows.py,將會發現缺失數據的日期只有一個:

Missing data for 2018-02-18 00:00:00

妥善地處理錯誤后,代碼能夠生成圖形并忽略缺失數據的那天。運行結果如下:

Python如何讀取CSV文件并進行數據可視化繪圖

感謝各位的閱讀,以上就是“Python如何讀取CSV文件并進行數據可視化繪圖”的內容了,經過本文的學習后,相信大家對Python如何讀取CSV文件并進行數據可視化繪圖這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

京山县| 崇左市| 鄯善县| 永仁县| 平安县| 昭通市| 汶上县| 枞阳县| 墨江| 江口县| 调兵山市| 广南县| 滦平县| 娄烦县| 徐州市| 江门市| 哈巴河县| 淄博市| 竹山县| 大化| 兴隆县| 忻城县| 天气| 衡东县| 中超| 富民县| 台中市| 六盘水市| 云浮市| 普定县| 宣威市| 德州市| 崇仁县| 济源市| 耿马| 惠安县| 武夷山市| 福建省| 额敏县| 宣城市| 和龙市|