Displaying 19 results from an estimated 19 matches for "lmomco".
2013 Jan 21
1
lmomco package - Random number generation using Wakeby distribution
Dear R forum
>From the given data, I have estimated the parameters of Wakeby distribution using lmomco package as
library(lmomco)
(amounts <- read.csv("input_S.csv")$amount)
# ___________________________________________________________
# Wakeby distribution - Parameter estimation
N =
length(amounts)
lmr = lmom.ub(amounts)
parameters_of_Wakeb...
2006 Apr 30
2
Package docs for CRAN
CRAN et al.,
I would like to add an extented introduction or other arbitrary
sections to my package lmomco.
I have been shipping inst/doc/Introduction.Rd. I would like to have
this content inserted to the front of the PDF build for the CRAN. The
R-exts.pdf seems to be a little silent on this subject? For my
purposes, I have been doing this
R CMD Rd2dvi --pdf --title="lmomco---version X"...
2012 Jun 20
2
lmomco in gev estimation
Hi guys,
I'm trying to use lmomco package. first I did the manual calculation on
what is the estimates scale and location parameter given L-CV=0.2, L1=1000
L-moments and k (shape parameter) =- 0.1. so what i get is:
location: 821.0445
scale: 260.7590
shape: -0.1000
#I assign this as GEV vectors using vec2par
GEVpara2<-ve...
2009 Nov 16
1
lmomco package and confidence limits?
Hello,
I am using the lmomco package (lmom.ub and pargev) to compute the GEV
parameters (location, scale, and shape), which are used to estimate
return values. I was wondering how/if I can calculate upper and lower
confidence (CI_u, CI_l) intervals for each return frequency using the
GEV parameters to fill-in the table be...
2006 May 02
1
using parnor (lmomco package) - output
Hi,
I am using parnor function of lmomco package. I believe it provides mean and std. dev for the set of data. But the std. dev provided does not match with the actual std. dev of the data which is 247.9193 (using sd function). Am I missing something here?
> lmr <- lmom.ub(c(123,34,4,654,37,78))
> parnor(lmr)
$type
[1] &qu...
2013 Apr 07
1
lmomco - Three-Parameter Pearson 5 Distribution
Dear R forum,
I am bit confused and please guide me -
(1) Is "Pearson Type III Distribution" as given in lmomco package same as Three Parameter Pearson 5 Distribution?
If not, how do I estimate the parameters of Three Parameter Pearson 5 Distribution?
(2) Is there any other R forum dealing with only Statistical queries?
Kindly guide
Regards
Katherine
[[alternative HTML version deleted]]
2006 Apr 26
1
cdf of weibull distribution
Hi,
I have a data set which is assumed to follow weibull distr'. How can I find of cdf for this data. For example, for normal data I used (package - lmomco)
>cdfnor(15,parnor(lmom.ub(c(df$V1))))
Also, lmomco package does not have functions for finding cdf for some of the distributions like lognormal. Is there any other package, which can handle these distributions?
Thanx in advance
Sachin
---------------------------...
2011 Jul 07
1
Generalized Logistic and Richards Curve
...The "generalized logistic curve or function", also known as Richard's curve is a widely-used and flexible sigmoid function for growth modelling, extending the well-known logistic curve.
Now I am confused and will like to know if the Generalized Logistic distribution as described in lmomco package is same as what wikipedia is describing. In other words, is Generalized Logistic Function same as Generalized logistic distribution?
I do understand there is separate R package "richards' for dealing with Richards curve.
Kindly guide
Vincy
[[alternative HTML version delete...
2012 Jun 27
2
how to apply the same function to multiple data set
...and 50 time scales (row).
#what I tried to do:
estIID50=rep(NA,1000)
for (i in 1:1000)
estIID50[i]=pargev(lmom.ub(IID50[1:50,i]))
#warning message
In estIID50[i] = pargev(lmom.ub(IID50[1:50, i])) :
number of items to replace is not a multiple of replacement length
#pargev is a function from lmomco package. I would like to apply it to the
1000 set of time series that I have in the IID50, without having to do it
manually.
#I dont understand what is the warning warns about
Can somebody help me?
[[alternative HTML version deleted]]
2009 Nov 24
1
Old Version of R - packages
...ndly guide how do I download the version of YieldCurve compatible with R 2.6.0
(b) If I want to upgrade to R 2.10 (for my standalone machine), how do I do it without losing my "packages" already loaded earlier i.e. if I upgrade to R 2.10, I don't wish to reinstall packages like lmom, lmomco, quantreg, YieldCurve etc.
Please guide
Julia
************************************************
Only a man of Worth sees Worth in other men
************************************************
[[alternative HTML version deleted]]
2006 Apr 26
1
MacOSX package install problem: pkgs quadprog & tseries
...age 'tseries'
** Removing '/Library/Frameworks/R.framework/Versions/2.2/Resources/
library/tseries'
the -lcc_dynamic is also problem with quadprog. I've read the
appropriate R manuals; however, I don't know where to go from here.
Thanks,
William Asquith (author package lmomco)
2006 Aug 08
2
Frequency Distribution
Hi,
Could someone please suggest where I might find some
instructions / tutorials / FAQs that describe how to
create a frequency distribution and cumulative
frequency distribution in R using different class
withs.
I have about a 2-million observations (distances
between points ranging from sub-millimetre to about
400km, and I want to get a feel for how they are
distributed).
I'd like the
2006 Jun 14
4
could someone tell me how to implement a multiple comparison test for proportions in a 2xc crosstabulation
Dear all,
I wanna to do multiple comparison test for proportions (multiple chi
squre ?), could someone tell me how in R, thank you!
2006 Dec 04
1
Help for L-moment Ratio Diagram
Respected Sir
I have to select a probability distribution using L-moment Ratio Diagram. I
am not understanding how to plot sample TAU3 and TUA4 on L-moment Ratio
Diagram.
Please Guide me
Best Regards
--
AMINA SHAHZADI
Department of Statistics
GC University Lahore, Pakistan.
Email:
amnakhan493@gmail.com
amna_989@hotmail.com
amna_989@yahoo.com
[[alternative HTML version deleted]]
2011 Jun 27
0
TL diagram
the backage lmomco can plot the L-moments ratio diagram
would it be possible to draw the TL moments diagram also?
--
Osama Abdelaziz Hussien
Department of Statistics
Faculty of Commerce
Alexandria University
Egypt
2011 Dec 13
1
generate a number using exponential low
Deal list
> I want to generate a random number in an interval using exponential low
> I know how to make that simply using uniform low
> x1 <- runif(1, 5.0, 7.5)
> this will generate a number between 5 et 7.5 but with uniform low.
> Could you help pease.?
> Regards
>
> --
> PhD candidate in Computer Science
> Address
> 3 avenue lamine, cité ezzahra, Sousse 4000
2007 Mar 26
1
Problem in loading all packages all at once
...ot;latentnet","lattice","latticeExtra","lazy","ldbounds","ldDesign","LDheatmap","leaps","lgtdl","limma","linprog","lme4","lmeSplines","LMGene","lmm","lmomco","Lmoments","lmtest","locfdr","locfit","lodplot","LogicReg","logistf","logspline","lokern","longitudinal","longmemo","LoopAnalyst","LowRankQP","lpridge",&...
2012 Apr 15
6
CRAN (and crantastic) updates this week
CRAN (and crantastic) updates this week
New packages
------------
* disclapmix (0.1)
Maintainer: Mikkel Meyer Andersen
Author(s): Mikkel Meyer Andersen and Poul Svante Eriksen
License: GPL-2
http://crantastic.org/packages/disclapmix
disclapmix makes inference in a mixture of Discrete Laplace
distributions using the EM algorithm.
* EstSimPDMP (1.1)
Maintainer: Unknown
Author(s):
2010 Jul 18
6
CRAN (and crantastic) updates this week
CRAN (and crantastic) updates this week
New packages
------------
* allan (1.0)
Alan Lee
http://crantastic.org/packages/allan
Automates Large Linear Analysis Model Fitting
* andrews (1.0)
Jaroslav Myslivec
http://crantastic.org/packages/andrews
Andrews curves for visualization of multidimensional data
* anesrake (0.3)
Josh Pasek
http://crantastic.org/packages/anesrake
This