example_TUWmodel(TUWmodel)
example_TUWmodel()所属R语言包:TUWmodel
Data-sample
数据采样
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Data for examples in the package
程序包中的示例数据
用法----------Usage----------
data(example_TUWmodel)
格式----------Format----------
The data are time series for the river Vils at Vils (Laende):
数据的时间序列河VILS在VILS(Laende):
Q_Vils vector of observed daily discharges (mm/day);
Q_Vils向量每天观察放电(毫米/天);
P_Vils matrix of observed daily precipitation (mm/day) for 6 zones;
P_Vils矩阵为6个区域观测到的日降水量(毫米/天);
T_Vils matrix of observed daily temperatures (degC) for 6 zones;
T_Vils矩阵的每日观察6个区域的温度(摄氏度);
PET_Vils matrix of potential evapotranspiration (mm/day) for 6 zones;
PET_Vils矩阵为6个区域潜在蒸散量(毫米/天);
SWE_Vils matrix of observed snow water equivalent (mm) for 6 zones;
SWE_Vils矩阵观测到的雪水当量(mm)为6个区域;
areas_Vils areas of the 6 zones.
areas_Vils的6个区域的区域。
实例----------Examples----------
data(example_TUWmodel)
ls()
t <- as.Date(rownames(P_Vils))
plot(t, apply(P_Vils, 1, weighted.mean, w=areas_Vils), type="S", xlab="", ylab="Precipitation [mm/day]")
plot(t, apply(PET_Vils, 1, weighted.mean, w=areas_Vils), type="l", xlab="", ylab="Potential evapotranspiration [mm/day]")
plot(t, T_Vils[,1], type="l", xlab="", ylab="Temperature [degC]")
lines(t, T_Vils[,6], col=3)
plot(t, SWE_Vils[,6], col=3, type="l", xlab="", ylab="Snow water equivalent [mm]")
lines(t, SWE_Vils[,1], col=1)
plot(as.Date(names(Q_Vils)), Q_Vils, type="l", xlab="", ylab="Runoff [mm/day]")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|