Dears,我有空氣溫度數據,我需要用不平滑的曲線繪製三個選定年份的正態分佈。我正在尋找的圖與圖2的here類似,其中我可以看到每條曲線(即噪音)的溫度波動。繪製不明朗的正態分佈r
這裏是一個在線的數據和代碼示例:
Cowtan<-read.table("http://www-users.york.ac.uk/~kdc3/papers/coverage2013/had4_krig_v2_0_0.txt", header=F)
names(Cowtan)<-c("Year", "Temperature", "Uncertainty1", "Uncertainty2", "Uncertainty3") #Name the columns
S1850s<-subset(Cowtan, Year<1860) #Get subsets of each decade
S1950s<-subset(Cowtan, Year>=1950 & Year<1960)
S2007<-subset(Cowtan, Year>=2007 & Year<2017)
D1850s=density(S1850s$Temperature) #Get the density kernals
D1950s<-density(S1950s$Temperature)
D2007<-density(S2007$Temperature)
plot(D1850s, main="Bell curve of temperatures during selected decades", xlab="Temperature anomalies (ºC)",xlim=c(-1.1,1.3), ylim=c(0,3), lwd=1.5)
points(D2007, type="l",col="red", lwd=1.5)
points(D1950s, type="l",col="blue", lwd=1.5)
legend("topleft", legend=c("1850s", "1950s", "2007-2016"), col=c("black", "blue", "red"), lwd=2)
什麼是「不平滑的正態分佈」? – Roland