line_sumrain(wasim)
line_sumrain()所属R语言包:wasim
Draw line of cumulative rainfall
画线的累积雨量
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Add a line with cumulative rainfall data to a plot. The maximum value of the plot has to be passed. If the cumulative rainfall exceeds this maximum, it will start again at 0.
添加一行的累积雨量数据的图。的图要传递的最大值。如果累积降雨量超过这个最大值,它会重新开始为0。
用法----------Usage----------
line_sumrain(xdata, cum_sum_rain, theMax, ...)
参数----------Arguments----------
参数:xdata
Values ploted on the x axis, usually read with read.dates
值x轴的ploted上,通常读取read.dates
参数:cum_sum_rain
Vector with the cumulative rain
向量的累积雨
参数:theMax
The maximum of the y-axis
的y-轴的最大
参数:...
additional arguments passed to lines
额外的参数传递给lines
值----------Value----------
Used for its side effect
用于其副作用
(作者)----------Author(s)----------
Dominik Reusser
参见----------See Also----------
See also p.flow_comp
p.flow_comp
实例----------Examples----------
#Uniform rain[统一雨]
plot(1:100, rep(1, 100),ylim=c(10,0),type="h", xlab="time", ylab="rainfall")
line_sumrain(xdata=1:100, cum_sum_rain=(1:100), theMax=10)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|