亚洲免费在线-亚洲免费在线播放-亚洲免费在线观看-亚洲免费在线观看视频-亚洲免费在线看-亚洲免费在线视频

使用ggplot2繪制風向風速玫瑰圖

系統 4825 0

偶然的機會,試著使用了一次ggplot2,繪出的玫瑰圖的確非常美,將使用過程記錄下來。

ggplot2

  ggplot2是用于繪圖的R語言擴展包,其理念根植于《Grammar of Graphics》一書。它將繪圖視為一種映射,即從數學空間映射到圖形元素空間。
例如將不同的數值映射到不同的色彩或透明度。該繪圖包的特點在于并不去定義具體的圖形(如直方圖,散點圖),而是定義各種底層組件(如線條、方塊)來合成復雜的圖形,
這使它能以非常簡潔的函數構建各類圖形,而且默認條件下的繪圖品質就能達到出版要求。

http://www.plob.org/2014/05/11/7264.html

?

?安裝ggplot2

  • R語言環境下安裝ggplot2
      install.packages(
      
        "
      
      
        ggplot2
      
      
        "
      
      )
    

繪制風向風速玫瑰圖?

?

  • 載入相關依賴包

#library與require功能類似,區別是require()返回一個logic之,library返回一個類似地址的值
#library(ggplot2)
#library(RColorBrewer)
require(ggplot2)
require(RColorBrewer)

plot.windrose <- function(data,
spd,
dir,
spdres = 10, //風速單位區間
dirres = 30, //風向角度區間
spdmin = 0,
spdmax = 90,
spdseq = NULL,
palette = "YlGnBu",
countmax = NA,
debug = 0){

# Look to see what data was passed in to the function
if (is.numeric(spd) & is.numeric(dir)){
# assume that we've been given vectors of the speed and direction vectors
data <- data.frame(spd = spd,dir = dir)
spd = "spd"
dir = "dir"
} else if (exists("data")){
# Assume that we've been given a data frame, and the name of the speed?
# and direction columns. This is the format we want for later use.?
}?

# Tidy up input data ----
n.in <- NROW(data)
dnu <- (is.na(data[[spd]]) | is.na(data[[dir]]))
data[[spd]][dnu] <- NA
data[[dir]][dnu] <- NA

# figure out the wind speed bins ----
if (missing(spdseq)){
spdseq <- seq(spdmin,spdmax,spdres)
} else {
if (debug >0){
cat("Using custom speed bins \n")
}
}

# get some information about the number of bins, etc.
n.spd.seq <- length(spdseq)
n.colors.in.range <- n.spd.seq - 1

# create the color map
spd.colors <- colorRampPalette(brewer.pal(min(max(3,
n.colors.in.range),
min(9,
n.colors.in.range)),?
palette))(n.colors.in.range)

if (max(data[[spd]],na.rm = TRUE) > spdmax){?
spd.breaks <- c(spdseq,max(data[[spd]],na.rm = TRUE))?
spd.labels <- c(paste(c(spdseq[1:n.spd.seq-1]),
'-', c(spdseq[2:n.spd.seq])),paste(spdmax,
"-",max(data[[spd]],na.rm = TRUE)))
spd.colors <- c(spd.colors, "grey50")
} else{
spd.breaks <- c(seq(spdseq))
spd.labels <- paste(c(spdseq[1:n.spd.seq-1]),
'-',c(spdseq[2:n.spd.seq]))?
}
data$spd.binned <- cut(x = data[[spd]],
breaks = spd.breaks,
labels = spd.labels,
ordered_result = TRUE)

# figure out the wind direction bins
dir.breaks <- c(-dirres/2,seq(dirres/2, 360-dirres/2, by = dirres),360+dirres/2)?
dir.labels <- c(paste(360-dirres/2,"-",dirres/2),paste(seq(dirres/2, 360-3*dirres/2, by = dirres),
"-",seq(3*dirres/2, 360-dirres/2, by = dirres)),paste(360-dirres/2,"-",dirres/2))

# assign each wind direction to a bin
dir.binned <- cut(data[[dir]],breaks = dir.breaks,ordered_result = TRUE)
levels(dir.binned) <- dir.labels
data$dir.binned <- dir.binned

#修改上述函數, 改用英文縮寫方位標志
#dir.breaks <- c(-1, 11.25 + (22.5*0:16))
#dir.binned <- cut(data[[dir]],breaks = dir.breaks,labels = c("N", "NNE", "NE", "ENE", "E", "ESE","SE", "SSE", "S", "SSW", "SW", "WSW", "W", "WNW", "NW", "NNW", "N2"))
#levels(dir.binned)[17] = "N"

# Run debug if required ----
if (debug>0){?
cat(dir.breaks,"\n")
cat(dir.labels,"\n")
cat(levels(dir.binned),"\n")
cat(speedcuts.colors, "\n")?
}?

# create the plot ----
p.windrose <- ggplot(data = data,aes(x = dir.binned,fill = spd.binned)) +
geom_bar() + scale_x_discrete(drop = FALSE,labels = waiver()) +
coord_polar(start = -((dirres/2)/360) * 2*pi) +
scale_fill_manual(name = "Wind Speed (m/s)",values = spd.colors,drop = FALSE) +
theme(axis.title.x = element_blank())

# adjust axes if required
if (!is.na(countmax)){
p.windrose <- p.windrose +
ylim(c(0,countmax))
}

# print the plot
print(p.windrose)?

# return the handle to the wind rose
return(p.windrose)
}

  • 調用上述方法

#讀取數據
data.in <- read.csv(file = "H:/1.csv",col.names = c("date","hr","ws.80","wd.80"),stringsAsFactors = FALSE)

#調用方法,代入風速風向數據,生成圖像(data.in$ws.80指代入上述讀取數據中的ws.80行,spdseq為風速分割區間)
p <- plot.windrose(spd = data.in$ws.80,dir = data.in$wd.80,spdseq = c(0,10,20,30,40,50,60,70,80,90))

#保存圖像
ggsave("H:/test.png")

使用的數據文件

使用ggplot2繪制風向風速玫瑰圖

?

生成的風向風速玫瑰圖

使用ggplot2繪制風向風速玫瑰圖

使用ggplot2繪制風向風速玫瑰圖


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 99视频全部看免费观 | 国产乱子伦 | 色综合天天色综合 | 国产成人综合久久亚洲精品 | 久久亚洲精品视频 | 一区二区三区免费在线视频 | 在线资源站 | 高清一级毛片一本到免费观看 | 正在播放国产乱子伦视频 | 99在线精品国产不卡在线观看 | 久久国产免费观看精品 | 精品动漫一区二区三区 | 青青久操视频 | 日韩欧美视频在线一区二区 | 免费视频精品一区二区三区 | 福利视频不卡 | 精品视频中文字幕 | 久久久精品麻豆 | 天天撸夜夜操 | 中国女人内谢59xxxxx | 色成网| 91亚色| 九九色综合 | 中文字幕在线观看不卡视频 | 美女一级毛片免费观看 | 精品福利一区二区三区免费视频 | 性欧美高清久久久久久久 | 久热国产在线视频 | 四虎影视成人精品 | 亚洲成在人色婷婷 | 狠狠色丁香婷婷综合精品视频 | 久久精品免看国产成 | a级无毛片| 久久久精品日本一区二区三区 | 免费v片在线观看无遮挡 | 老司机久久精品视频 | 日韩欧美一二三区 | 色日韩在线| 97影院九七理论片男女高清 | 久久美女视频 | 欧美成人小视频 |