normalizeGaussian_prec(RMAWGEN)
normalizeGaussian_prec()所属R语言包:RMAWGEN
Converts precipitation values to "Gaussinized" normally-distributed values taking into account the probability of no precipitation occurences. values
降水值转换为“Gaussinized”通常是考虑到无降水出现次数的概率分布值。值
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Converts precipitation values to "Gaussinized" normally-distributed values taking into account the probability of no precipitation occurences. values or vice versa in case inverse is TRUE
降水值转换为“Gaussinized”通常是考虑到无降水出现次数的概率分布值。值或反之亦然的情况下inverse是TRUE
用法----------Usage----------
normalizeGaussian_prec(x = 0, data = x, cpf = NULL,
mean = 0, sd = 1, inverse = FALSE, type = 3,
extremes = TRUE, sample = NULL, qnull = 0, valmin = 1)
参数----------Arguments----------
参数:x
value or vector of values to be converted
要转换的值或值的向量
参数:data
a sample of data on which a non-parametric probility distribution is estimated
估计的非参数的最后从分布的数据样本
参数:cpf
cumulative probability distribution. If NULL (default) is calaculated as ecdf(data)
累积概率分布。如果NULL(默认)calaculated作为ecdf(data)的
参数:mean
mean (expected value) of the normalized random variable. Default is 0.
平均(预期值)的归一化的随机变量。默认为0。
参数:sd
standard deviation of the normalized random variable. Default is 1.
的归一化的随机变量的标准偏差。默认值是1。
参数:inverse
logical value. If TRUE the function works inversely (the opposite way). Default is FALSE.
逻辑值。如果TRUE的功能成反比(相反的方向)。默认是FALSE。
参数:qnull
probability of no precipitation occurence
无沉淀发生的概率
参数:valmin
minimum value of precipitation to consider a wet day
降水的最低值,考虑一个雨天,
参数:type
see quantile
看到quantile
参数:extremes
logical variable. If TRUE (default) the probability or frequency is multiplied by <p align="center">\frac{N}{N+1}
逻辑变量。如果TRUE(默认值)的概率或频率乘以:<p ALIGN="CENTER">\frac{N}{N+1}
where N is the length of data
在那里N的长度data的
参数:sample
a character string or NULL containing sample or probability distribution information. Default is NULL
字符串或NULL的样品或概率分布信息。默认是NULL
值----------Value----------
the normalized variable or its inverse
的归一化的变量或它的反
注意----------Note----------
In the version 1.2.5 of RMAWGEN This function is deprecated and not used.
在版本1.2.5 RMAWGEN此功能已被废弃,不能使用。
(作者)----------Author(s)----------
Emanuele Cordano, Emanuele Eccel
参见----------See Also----------
normalizeGaussian
normalizeGaussian
实例----------Examples----------
library(RMAWGEN)
NDATA <- 1000
occurence <- as.logical(runif(NDATA)>0.5)
prec <- rexp(NDATA,rate=1/3)
prec[!occurence] <- 0
valmin <- 0.5 #0.01[0.01]
x <- normalizeGaussian_prec(x=prec,valmin=valmin)
prec2 <- normalizeGaussian_prec(x=x,data=prec,valmin=valmin,inverse=TRUE)
qqplot(prec,prec2)
occurence3 <- as.logical(runif(NDATA)>0.5)
prec3 <- rexp(NDATA,rate=1/3)
prec3[!occurence3] <- 0
x3 <- normalizeGaussian_prec(x=prec3,valmin=valmin)
qqplot(x,x3)
abline(0,1)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|