Displaying 3 results from an estimated 3 matches for "dgh".
Did you mean:
dg
2009 Feb 10
7
How to split a character vector into 3 vectors
Hi ,
Does any one know how to split a character vector , I have a vector X that
looks like this and each row has 3 characters
X
ASK
DGH
ASG
AUJ
FRT
I would like to split the vector into 3 vectors that look like this
X1 X2 X3
A S K
D G H
A S G
A U J
U R T
thanks
--
View this message in context: http://www.nabble.com/How-to-split-a-character-vector-into-3-vectors-tp21939492p21939492.html
Sent from the R help mailing list archi...
2013 May 02
0
How does dsgh do the standardization?
...kage.pdf
I looked at the code of the dsgh function in the fBasics package:
> dsgh
function (x, zeta = 1, rho = 0, lambda = 1, log = FALSE)
{
if (length(zeta) == 3) {
lambda = zeta[3]
rho = zeta[2]
zeta = zeta[1]
}
param = .paramGH(zeta, rho, lambda)
ans = dgh(x, param[1], param[2], param[3], param[4], lambda,
log)
ans
}
<environment: namespace:fBasics>
>
As one can see, the code gets the values for lambda rho and zeta from
the parameters with which the function was called, e.g. I can call the
function via
> dsgh(x,zeta=2,rho=0....
2007 Jul 27
1
R codes for g-and-h distribution
hi!
I would like to ask help how to generate numbers from g-and-h distribution. This distribution is like normal distribution but span more of the kurtosis and skewness plane. Has R any package on how to generate them?
Any help will be greatly appreciated. Thank you so much!
Form,
Filame Uyaco
---------------------------------
[[alternative HTML version deleted]]