赖江山的博客分享 http://blog.sciencenet.cn/u/laijiangshan 生态、统计与R语言

博文

Functions for continuous truncated Pareto distributions

已有 3168 次阅读 2016-12-25 21:12 |系统分类:科研笔记| for, functions, continuous, truncated, Pareto

#### Functions for continuous truncated Pareto distributions

# by Lai jiangshan

# dtparetoProbability density

# ptparetoProbability distribution (CDF)

# qtparetoQuantile function

# rtparetoRandom variable generation


# Probability density of truncated Pareto distributions

# Gives NA on values below the lower

# Input: Data vector, lower threshold,upper threshold, scaling exponent, "log" flag

# Output: Vector of (log) probability densities

dtpareto <- function(x, lower,upper, exponent, log=FALSE) {

 # Avoid doing limited-precision arithmetic followed by logs if we want

 # the log!

 if (!log) {

   prefactor <- (1-exponent)/(upper^(1-exponent)-lower^(1-exponent))

   f <- function(x) {prefactor*(x)^(-exponent)}

 } else {

   prefactor.log <- log((1-exponent)/(upper^(1-exponent)-lower^(1-exponent)))

   f <- function(x) {prefactor.log -exponent*log(x)}

 }

 d <- ifelse(x<lower,NA,f(x))

 return(d)

}


# Cumulative distribution function of the Pareto distributions

# Gives NA on values < threshold

# Input: Data vector, lower threshold,upper threshold scaling exponent, usual flags

# Output: Vector of (log) probabilities

ptpareto <- function(x, lower, upper,exponent, lower.tail=TRUE, log.p=FALSE)

{

 if ((!lower.tail) && (!log.p)) {

   f <- function(x) {1-(x^(1-exponent)-lower^(1-exponent))/(upper^(1-exponent)-lower^(1-exponent))}

}

 if ((lower.tail) && (!log.p)) {

   f <- function(x) { (x^(1-exponent)-lower^(1-exponent))/(upper^(1-exponent)-lower^(1-exponent))}

}

 if ((!lower.tail) && (log.p)) {

   f <- function(x) {log(1-(x^(1-exponent)-lower^(1-exponent))/(upper^(1-exponent)-lower^(1-exponent)))}

}

 if ((lower.tail) && (log.p)) {

   f <- function(x) {log((x^(1-exponent)-lower^(1-exponent))/(upper^(1-exponent)-lower^(1-exponent)))}

}

 p <- ifelse(x < lower, NA, f(x))

 return(p)

}


# Quantiles of Pareto distributions

# Input: vector of probabilities, lower threshold,upper threshold,scaling exponent, usual flags

# Output: Vector of quantile values

qtpareto <- function(p, lower,upper, exponent, lower.tail=TRUE, log.p=FALSE) {

 if (log.p) {

   p <- exp(p)

 }

 if (lower.tail) {

   p <- 1-p

 }

 # This works, via the recycling rule

 # q<-(p^(1/(1-exponent)))*lower

 q <- (p*(upper^(1-exponent)-lower^(1-exponent))+lower^(1-exponent))^(1/(1-exponent))

 return(q)

}


# Generate Pareto-distributed random variates

# Input: Integer size, lower threshold,upper threshold scaling exponent

# Output: Vector of real-valued random variates

rtpareto <- function(n, lower,upper, exponent) {

 # Using the transformation method, because we know the quantile function

 # analytically

 # Consider replacing with a non-R implementation of transformation method

 ru <- runif(n)

 r<-qtpareto(ru,lower,upper,exponent)

 return(r)

}




https://blog.sciencenet.cn/blog-267448-1023248.html

上一篇:基于距离的RDA(db-RDA)
下一篇:约束排序(RDA,CCA)两种筛选环境变量的方法
收藏 IP: 222.129.35.*| 热度|

0

该博文允许注册用户评论 请点击登录 评论 (0 个评论)

数据加载中...
扫一扫,分享此博文

Archiver|手机版|科学网 ( 京ICP备07017567号-12 )

GMT+8, 2024-7-28 02:38

Powered by ScienceNet.cn

Copyright © 2007- 中国科学报社

返回顶部