[問題類型]:
程式諮詢(我想用R 做某件事情,但是我不知道要怎麼用R 寫出來)
[軟體熟悉度]:
入門(寫過其他程式,只是對語法不熟悉)
[問題敘述]:
各位大大好,小弟我目前有2個矩陣(原始為list)的數值資料,其中一個為時間的
index(第幾筆),另一個為各別分配的權重,我要做的事是將這2個矩陣的資訊套用在一筆
降雨資料(netcdf檔)上,由下圖的2個矩陣(時間index.權重)的資訊為例,也就是我要將
原始的降雨資料的第一天(筆)以第1天的降雨值(每個網格點)x0.8334249,加上第9830天的
降雨值x0.12252973來取代,以此類推。
而小弟我目前卡在不知道該怎麼把矩陣對應的關係(第1天的第1個時間index乘上第一
個權重)放入迴圈中,下面的程式碼中是以analog.indices表示時間的index,weights表
示權重,可能程式碼的邏輯非常怪異,我上網查或許用apply系列的指令較適合,但我也
較少用apply系列的指令,因此較不熟悉,還煩請大大們指點和較詳細的說明,也非常歡
迎引導式教學,謝謝。
2個矩陣以及降雨的資料放在此:http://0rz.tw/JI056
https://imgur.com/Q4rRKi9 (時間index)
https://imgur.com/YJFXtr5 (權重)
[程式範例]:
library(ncdf4)
library(data.table)
memory.limit(size=50000)
analog.indices <- A[[1]]
analog.indices <- matrix(unlist(analog.indices), nrow=length(analog.indices),
byrow=T)
weights <- A[[2]]
weights <- matrix(unlist(weights), nrow=length(weights), byrow=T)
HIRAM_WRF_data <- nc_open("C:\\Users\\TOM\\Desktop\\R(資料庫)\\WRF(動力降尺度
資料)\\T2WHIRAM_c384_amip\\197901-200512_pr_axis_time_domain.nc")
print(HIRAM_WRF_data)
hiram_wrf_lon <- ncvar_get(HIRAM_WRF_data,"lon")
hiram_wrf_lat <- ncvar_get(HIRAM_WRF_data,"lat")
hiram_wrf_time <- ncvar_get(HIRAM_WRF_data,"time")
hiram_wrf_pr <- ncvar_get(HIRAM_WRF_data,"pr")
pr <- array(NA,dim=c(length(hiram_wrf_lon),length(hiram_wrf_lat),2))
for(i in analog.indices[1,i]){
for(w in weights[1,w]){
if(i==w){
pr[,,1:2] <-
ncvar_get(HIRAM_WRF_data,"pr",start=c(1,1,i),count=c(41,77,1))*w
}
}
}
View(pr[,,1])
[環境敘述]:
[關鍵字]:
迴圈 ncdf檔