Displaying 20 results from an estimated 10000 matches similar to: "calculation for standard normal cumulative distribution"
2008 Nov 03
1
IWLS vs direct ML estimation
Hi,
I am thinking about IWLS vs ML estimation. When I use glm() for a
2-parameter distribution (e.g., Weibull), I can otain the MLE of scale
parameter given shape parameter through IWLS. Because this scale parameter
usually converges to the MLE.
In this point, I am wondering:
i) can you say that the direct MLE, which is obtained by maximizing a
likelihood function, is equalvant to the indirect
2009 Jul 29
3
how to skip a numeric column for averaging other columns?
Data has the first row for variable name and the first column for sample
name. I want to take "Log" for all data, but how to compute without the
first column for sample name.
That is,
column 1: sample ID
column 2-10: data
I want to find an average on each column (2-10)
> apply(raw_data,2,mean)
Error in Math.data.frame(list(sample_id = c(1L, 2L, 3L, 4L, 5L, 6L, 7L, :
2008 Sep 29
3
count data with a specific range
Hi there,
The data is
data<-c(2,6,13,26,19,25,18,11,22,25)
I want to count data for these rages:
[0~10]:
[11~20]:
[21-30]:
Is anyone can help me?
Thank you in advance
--
View this message in context: http://www.nabble.com/count-data-with-a-specific-range-tp19732290p19732290.html
Sent from the R help mailing list archive at Nabble.com.
2003 Jun 24
4
cumulative frequency distribution plot
Does R do cumulative frequency distribution plots?
--
Tommy E. Cathey, Senior Scientific Application Consultant
High Performance Computing & Scientific Visualization
SAIC, Supporting the EPA
Research Triangle Park, NC
919-541-1500 EMail: cathey.tommy at epa.gov
My e-mail does not reflect the opinion of SAIC or the EPA.
Federal Contact - John B. Smith
919-541-1087 - smith.johnb at epa.gov
2003 Nov 17
4
cumulative distribution functions
hi y'all,
I am wondering if there is any special command, function,
package, etc to help me doing a cumulative distribution function,
with y-scale - probability scale.
I tried the help in R and i got the following answers:
cumsum(base) Cumulative Sums, Products, and Extremes
ecdf(stepfun) Empirical Cumulative Distribution Function
cpgram(ts) Plot
2007 Jul 19
2
(R) Using arguments for the empirical cumulative distribution function
Hi,
I have just started using R. Now I have the following problem:
I want to create an Empirical Cumulative Distribution Function and I only
came so far:
F10 <- ecdf(x)
plot(F10, verticals= TRUE, do.p = TRUE, lwd=3)
x=c(1.6,1.8,2.4,2.7,2.9,3.3,3.4,3.4,4,5.2)
Now I'd like to use arguments such as xlabs and main but I don't know how to
integrate them.
I hope someone can help me, I am
2007 Jun 04
2
inverse cumulative distribution
hi all:
ecdf() is the empirical cumulative distribution function, but I need the
INVERSE cumulative distribution.
how can I calculate it?
thank you in advance
/salva
2012 Mar 06
2
Numerical Inversion of Cumulative Distribution Function
Dear R users,
Given a user-defined cumulative distribution function F, I want to compute F^{-1}(x). How is that possible with R?
Best Regards,
--
Gildas Mazo
PhD student
MISTIS team at INRIA
Grenoble, France
[[alternative HTML version deleted]]
2007 Oct 07
1
a function to compute the cumulative distribution function (cdf) of the gamma
Un texte encapsul? et encod? dans un jeu de caract?res inconnu a ?t? nettoy?...
Nom : non disponible
Url : https://stat.ethz.ch/pipermail/r-help/attachments/20071006/065906cc/attachment.pl
2010 Oct 12
3
F cumulative distribution function
Dear Sir or Madam:
Dose anyone know the R function which corresponds to "fcdf", a "F cumulative
distribution function" of Matlab?
http://esra.univ-paris1.fr/matlab5/toolbox/stats/fcdf.html
Please guide me how to get this function if it is available.
..... or code it ab initio if no function in R
language
Thanks for kind reply further.
Hsih-Te
2013 Feb 05
1
Calculating Cumulative Incidence Function
Hello,
I have a problem regarding calculation of Cumulative Incidence Function.
The event of interest is failure of bone-marrow transplantation, which may
occur due to relapse or death in remission. The data set that I have
consists of- lifetime variable, two indicator variables-one for relapse and
one for death in remission, and the other variables are donor type (having
3 categories), disease
2008 Sep 26
2
Does R have an "inverse empirical cumulative distribution" function ?
Dear R Users,
Does R have an "inverse empirical cumulative distribution" function,
something one can use to invert ecdf ?
Thanks in advance,
Tolga
Generally, this communication is for informational purposes only
and it is not intended as an offer or solicitation for the purchase
or sale of any financial instrument or as an official confirmation
of any transaction. In the event you
2005 Jan 16
2
Empirical cumulative distribution with censored data
Dear list,
I would like to plot the empirical cumulative distribution of the time
needed by a treatment to attain a certain goal. A number of
experiments is run with a strict time limit. In some experiments the
goal is attained before the time limit, in other experiments time
expires before the goal is attained. The situation is very similar to
survivial analysis with censored data. I tryed
2012 Apr 04
0
multivariate ordered probit regression---use standard bivariate normal distribution?
Hello.
I have yet to receive a response to my previous post, so I may have
done a poor job asking the question. So, here is the general question:
how can I run a run a multivariate (more than one non-independent,
response variables) ordered probit regression model? I've had success
doing this in the univariate case using the vglm() function in the
VGAM package. For example:
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
2008 Oct 31
1
loglogistic cumulative distribution used by survreg
Dear all,
What is the cumulative distribution (with parameterization) used within
survreg with respect to the log-logistic distribution?
That is, how are the parameters linked to the survivor function?
Best regards,
Mario
[[alternative HTML version deleted]]
How to count from larger value to smaller value in ecdf (Empirical Cumulative Distribution Function)
2008 Feb 19
1
How to count from larger value to smaller value in ecdf (Empirical Cumulative Distribution Function)
Hi, all
ecdf function (Empirical Cumulative Distribution Function) in "stats"
package counts from smaller values to larger values.
However, I want to draw it by counting from larger value to smaller values
and I couldn't find options for this purpose.
How can I draw ecdf or ecdf like graph by counting from larger values to
smaller values.
Thank you in advance.
Hyunchul Kim
2007 Feb 27
1
fitting the gamma cumulative distribution function
Hi.
I have a vector of quantiles and a vector of probabilites that, when
plotted, look very like the gamma cumulative distribution function. I
can guess some shape and scale parameters that give a similar result,
but I'd rather let the parameters be estimated. Is there a direct way
to do this in R?
Thanks,
Tim.
week <- c(0,5,6,7,9,11,14,19,39)
fraction <-
2011 Apr 21
1
Converting from density to cumulative distribution
Hello
I'm trying to do the following vector operation:
given vector x = c(x1,x2,x3,x4...xn), produce vector y =
c(x1,x1+x2,x1+x2+x3,...x1+...+xn).
E.g., from x = c(1,3,2,2,5), produce y = c(1,4,6,8,13).
The underlying problem is finding the cumulative distribution function
given the empirical density distribution function.
I have done some research on this but the only relevant
2013 Jul 12
2
How to determine the pdf of a gamma distribution using the estimated parameters?
Hello everyone,
With th bar histogram (number of occurrences) hist<-c(24,7,4,1,2,1,1) of seven equally spaces classes ]1-4], ]5-8], ]9-12], ]13-16], ]17-20], ]21-24], ]25-28], I obtained shape=0.8276 and rate=0.1448.
I would like to know how to build the continuous pdf of a this gamma distribution knowing these two estimated parameters such that I will be able to predict the pdf of any