Displaying 20 results from an estimated 1000 matches similar to: "3-D plot of a bidimensional lognormal distribution"
2009 May 29
1
Mean of lognormal in base-2
Hi, Does anyone know what the mean value of a lognormal distribution in base-2 is? I am simulating stochastic population growth and if I were working in base-e, I would do:lambda <- 1.1 #multiplicative growth rates <- 0.6 #stochasticity (std. dev)lognormal <- rlnorm(100000, log(lambda) - (s^2)/2, s)## or lognormal <- exp( rnorm( 100000, log(lambda) - (s^2)/2,
2006 Aug 05
1
AIC for lognormal model
Dear all,
I want to compare some different models for a dataset by QQ plots and AIC. I get the following AICs:
- linear model: 19759.66
- GAMLSS model: 18702.7
- linear model with lognormal response: -7862.182
The QQ plots show that the lognormal model fits better than the linear model, but still much worse than the GAMLSS. So, in my opinion, the AIC of the lognormal model should be between the
2007 Aug 02
4
Finding multiple characters in the same string
Hi
I have this problem where I need to find if there is any numbers in a
string, this is no problem if theres only one number per string. I would
then simply use the regexpr() funtion togheter with the substring function
to extract the number. But regexpr only picks one number per string either
from the beginning or the end, but not multiple. Can this be done? And how
for example
My string <-
2011 Nov 01
1
low sigma in lognormal fit of gamlss
Hi,
I'm playing around with gamlss and don't entirely understand the sigma
result from an attempted lognormal fit.
In the example below, I've created lognormal data with mu=10 and sigma=2.
When I try a gamlss fit, I get an estimated mu=9.947 and sigma=0.69
The mu estimate seems in the ballpark, but sigma is very low. I get similar
results on repeated trials and with Normal and
2007 Mar 23
1
generating lognormal variables with given correlation
Dear R users
I use simulated data to evaluate a model by sampling the parameters in
my model from lognormal distributions.
I would like these (lognormal distributed) parameters to be correlated,
that is, I would like to have pairwise samples of 2 parameters with a
given correlation coefficient.
I have seen that a covariance matrix can be fixed when generating random
variables from a
2008 Jul 17
0
How to compute loglikelihood of Lognormal distribution
Hi,
I am trying to learn lognormal mixture models with EM.
I was wondering how does one compute the log likelihood.
The current implementation I have is as follows,
which perform really bad in learning the mixture models.
__BEGIN__
# compute probably density of lognormal.
dens <- function(lambda, theta, k){
temp<-NULL
meanl=theta[1:k]
sdl=theta[(k+1):(2*k)]
2008 Feb 15
0
tests of lognormal distribution
Hi all,
I have a data of lognormal distribution (sample size > 1,000,000).
What I want to do is
1) to test if my dataset is a lognormal distribution or not (Histogram shows
a nice normal distribution in log scale but I want to check)
2) two subsets from this dataset have same mean or not (like "t test" of
normal distribution)
What I tried are
1) ad.test{truncgof} of R, which is a
2008 Feb 22
1
fitting a lognormal distribution using cumulative probabilities
Dear all,
I'm trying to estimate the parameters of a lognormal distribution fitted
from some data.
The tricky thing is that my data represent the time at which I recorded
certain events. However, in many cases I don't really know when the event
happened. I' only know the time at which I recorded it as already happened.
Therefore I want to fit the lognormal from the cumulative
2006 Nov 02
2
live dj
Hi all
i would like to know if there's a software to create a dj station taking the input from mic and stream with icecast, also i need to know if is possibe to mix mic input and ogg file and stream it togheter with icecast
thanks
__________________________________________________
Do You Yahoo!?
Poco spazio e tanto spam? Yahoo! Mail ti protegge dallo spam e ti da tanto spazio gratuito per i
2007 Sep 07
1
How to obtain parameters of a mixture model of two lognormal distributions
Dear List,
I have read that a lognormal mixture model having a pdf of the form
f(x)=w1*f1(x)+(1-w1)*f2(x) fits most data sets quite well, where f1
and f2 are lognormal distributions.
Any pointers on how to create a function that would produce the 5
parameters of f(x) would be greatly appreciated.
> version
_
platform i386-pc-mingw32
arch i386
os
2010 Dec 27
3
Gamma & Lognormal Model
Dear,
I'm very new to R Gui and I have to make an assignment on Gamma Regressions.
Surfing on the web doesn't help me very much so i hope this forum may be a
step forward.
The question sounds as follows:
The data set is in the library MASS
first install library(MASS)
then type data(mammals)
attach(mammals)
Assignment:
Fit the gamma model and lognormal model for the mammals data.
2010 Aug 01
2
Lognormal distribution - Range Factor
Hi, What does it mean to say Lognormal distribution with a mean of 1.03E-6
with a range factor of 100 ? How can I find the lognormal distribution
paramters from this information?
Thanks, Tims
[[alternative HTML version deleted]]
2011 Jul 29
3
plot, graphic
hi,
i`m trying to use the plot function to show more variable-funktions in one
graphic. so for example i would like to show Chinas Income in different
sectors in one graphic. obviousely typing plot(ChinaIncome) the graphics are
split and there is one graphic for agriculture, one for industry.... i would
like to put them togheter in one graphic, maybe with different colors for
every function,
2010 Mar 26
1
Poisson Lognormal
Hi R Users,
I'm going to estimate via. ML the parameters in Poisson Lognormal
model. The model is:
x | lambda ~ Poisson(lambda)
lambda ~ Lognormal(a,b)
Unfortunately, I haven't found a useful package allowing for such
estimation. I tried to use "poilog" package, but there is no equations
and it's hard to understand what exactly this package really does.
Using it I get the
2002 Dec 10
1
Lognormal distribution
I am trying to fit a lognormal distribution to a set of data and test its
goodness of fit with regard to predicted values.
I managed to get so far:
> y <- c(2,6,2,3,6,7,6,10,11,6,12,9,15,11,15,8,9,12,6,5)
> library(MASS)
> fitdistr(y,"lognormal",start=list(meanlog=0.1,sdlog=0.1))
meanlog sdlog
1.94810515 0.57091032
(0.12765945) (0.09034437)
But I would
2008 Dec 29
0
Lognormal with 0/1 "tag" [theoretical]
Hi Folks,
This is not (well, not yet) an R question as such, though
it is preparatory to embarking on an R-based study.
Scenario: X has a lognormal distribution. Jointly distributed
with X is a "tag" Y: Y = 0 or 1, with
Prob(Y=1|X) = exp(L)/(1+exp(L)), L = a + b*X
I am interested in the distribution of X conditional on Y,
which is proportional to
f(x,Y) =
2009 May 26
5
Help me...!!!
Hi to all...i'm a new R'user and i have to solve some exercies so i ask to
tou for an help...
1.) How i can demonstrate in R that the limit for x-->infinite of
(1+1/x)^x is equal to "e"?
2.) if i have a vector of values how can i create a function that, applied
to my vector, give me "median", "mean", "Var" and "length" togheter?
2004 Dec 13
1
AIC, glm, lognormal distribution
I'm attempting to do model selection with AIC, using a glm and a lognormal
distribution, but:
fit1<-glm(BA~Year,data=pdat.sp1.65.04, family=gaussian(link="log"))
## gives the same result as either of the following:
fit1<-glm(BA~Year,data=pdat.sp1.65.04, family=gaussian)
fit1<-lm(BA~Year,data=pdat.sp1.65.04)
fit1
#Coefficients:
#(Intercept) Year2004
# -1.6341
2012 Oct 14
0
multivariate lognormal distribution simulation in compositions
Dear All,
thanks to Berend, my question posted yesturday was solved succesfully here: http://r.789695.n4.nabble.com/hep-on-arithmetic-covariance-conversion-to-log-covariance-td4646068.html . I posted the question with the assumption of using the results with rlnorm.rplus() from compositions. Unfortunatelly, I am not getting reasonable enough outcome. Am I applying the results wrongfully? The
2008 Feb 18
0
Solved (??) Behaviour of integrate (was 'Poisson-lognormal probab ility calculations')
Hi Again,
I think I've solved my problem, but please tell me if you think I'm wrong,
or you can see a better way!
A plot of the integrand showed a very sharp peak, so I was running into the
integrand "feature" mentioned in the note. I resolved it by limiting the
range of integration as shown here:
--------------------------------------------------
function (x, meanlog = 0,