File:Ohio temps qq.svg
出自Wikimedia Commons
跳至導覽
跳至搜尋
此 SVG 檔案的 PNG 預覽的大小:360 × 315 像素。 其他解析度:274 × 240 像素 | 549 × 480 像素 | 878 × 768 像素 | 1,170 × 1,024 像素 | 2,341 × 2,048 像素。
原始檔案 (SVG 檔案,表面大小:360 × 315 像素,檔案大小:27 KB)
檔案資訊
結構化資料
說明
摘要
[編輯]描述Ohio temps qq.svg |
English: A quantile-quantile plot comparing the distributions of daily maximum temperature in the U.S. state of Ohio in March and in July. |
日期 | |
來源 | 自己的作品 |
作者 | Skbkekas |
SVG開發 InfoField | 本向量圖形使用Matplotlib創作。 |
原始碼 InfoField | Python code## "state33" data file obtained from: ftp://ftp.ncdc.noaa.gov/pub/data/ushcn/daily/README
import gzip
import numpy as np
import matplotlib.pyplot as plt
fid = gzip.open("state33.gz")
month1 = 3
month2 = 7
M1,M2 = [],[]
for line in fid:
stid = int(line[0:7])
if line[7:11]=="TMAX":
mo = int(line[17:19])
nday = int(line[20:22])
if mo not in [month1,month2]: continue
V,ii = [],26
for k in range(nday):
V.append(float(line[ii:ii+2]))
ii += 8
if mo==month1: M1.extend(V)
if mo==month2: M2.extend(V)
M1 = np.array(np.sort(M1))
M2 = np.array(np.sort(M2))
M1 = M1[M1!=99]
M2 = M2[M2!=99]
M1 = (M1-M1.mean())/M1.std()
M2 = (M2-M2.mean())/M2.std()
Q1 = [M1[int(q*len(M1))] for q in np.arange(1,1000,dtype=np.float64)/1000]
Q2 = [M2[int(q*len(M2))] for q in np.arange(1,1000,dtype=np.float64)/1000]
P1 = [M1[int(q*len(M1))] for q in np.arange(1,10,dtype=np.float64)/10]
P2 = [M2[int(q*len(M2))] for q in np.arange(1,10,dtype=np.float64)/10]
plt.clf()
plt.figure(figsize=(4,3.5))
plt.axes([0.15,0.15,0.8,0.8])
plt.grid(True)
plt.plot(Q1, Q2, '-', color="gray", lw=3)
plt.hold(True)
plt.plot([-3,3], [-3,3], '-', color='black')
plt.plot(P1, P2, 'o', mec='black', mfc='red')
plt.xlim(-2,3)
plt.ylim(-2,3)
plt.xlabel("March", size=14)
plt.ylabel("July", size=14)
plt.savefig("ohio_temps_qq.pdf")
plt.savefig("ohio_temps_qq.svg")
|
授權條款
[編輯]我,本作品的著作權持有者,決定用以下授權條款發佈本作品:
此檔案採用創用CC 姓名標示 3.0 未在地化版本授權條款。
- 您可以自由:
- 分享 – 複製、發佈和傳播本作品
- 重新修改 – 創作演繹作品
- 惟需遵照下列條件:
- 姓名標示 – 您必須指名出正確的製作者,和提供授權條款的連結,以及表示是否有對內容上做出變更。您可以用任何合理的方式來行動,但不得以任何方式表明授權條款是對您許可或是由您所使用。
檔案歷史
點選日期/時間以檢視該時間的檔案版本。
日期/時間 | 縮圖 | 尺寸 | 用戶 | 備註 | |
---|---|---|---|---|---|
目前 | 2009年11月13日 (五) 14:52 | 360 × 315(27 KB) | Skbkekas(對話 | 貢獻) | {{Information |Description={{en|1=A quantile-quantile plot comparing the distributions of daily maximum temperature in the U.S. state of Ohio in March and in July.}} |Source={{own}} |Author=Skbkekas |Date=2009-11-13 |Permission= |other_v |
無法覆蓋此檔案。
檔案用途
沒有使用此檔案的頁面。
全域檔案使用狀況
以下其他 wiki 使用了這個檔案:
- en.wikipedia.org 的使用狀況
- fa.wikipedia.org 的使用狀況
- fr.wikipedia.org 的使用狀況
- he.wikipedia.org 的使用狀況
- ja.wikipedia.org 的使用狀況
- pl.wikipedia.org 的使用狀況
- uk.wikipedia.org 的使用狀況
- zh.wikipedia.org 的使用狀況