Displaying 20 results from an estimated 1000 matches similar to: "References verifying accuracy of R for basic statistical calculations and tests"
2005 Jun 27
2
Numerical accuracy
Hi people,
I need to prove the good quality of numerical accuracy of R. Anyone knows a
paper or anything else comparing R to other statistical softwares in terms of
numerical accuracy.
I've made a long search about that but I found nothing. Please help me!!
Thanx,
Talita Leite
-------------------------------------------------
Este e-mail foi enviado pelo Webmail da UFAL
IMP:
2003 Jun 12
0
SP? Re: Rounding problem R vs Excel
Hi again Sam,
Sorry for not replying sooner. I have been ignoring everything for a
while to work on the AMMP analysis tool and the continuing saga of
migrating the legacy AMMP data. Our consultant has written some
programs that take a VERY long time to run :(
Anyway, I now know Java and a certain amount of JSP.
I hope to be able to get around to this soon. It is all a bit hard
now with our
2006 Jul 14
2
References verifying accuracy of R for basic statisticalcalculations and tests
Hi,
> [mailto:r-help-bounces at stat.math.ethz.ch] On Behalf Of Corey Powell
>
> Do you know of any references that verify the accuracy of R
> for basic statistical calculations and tests. The results of
> these studies should indicate that R results are the same as
> the results of other statistical packages to a certain number
> of decimal places on some benchmark
2003 Aug 28
3
(no subject)
Dear All,
A couple of questions about the nls package.
1. I'm trying to run a nonlinear least squares
regression but the routine gives me the following
error message:
step factor 0.000488281 reduced below `minFactor' of
0.000976563
even though I previously wrote the following command:
nls.control(minFactor = 1/4096), which should set the
minFactor to a lower level than the default
2003 Sep 04
0
SUMMARY: Comparison of SAS & R/Splus
My thanks to Drs. Armstrong, Bates, Harrell, Liaw, Lumley,
Prager, Schwartz, and Mr. Wang for their replies. I have
pasted my original message and their replies below.
After viewing http://www.itl.nist.gov/div898/strd/ as suggested
by Dr. Schwartz, it occurred to me that it might be educational
to search for some data repositories on google. I was able to find
some,though I'm sure many of
2003 Sep 04
7
Comparison of SAS & R/Splus
I am one of only 5 or 6 people in my organization making the
effort to include R/Splus as an analysis tool in everyday work -
the rest of my colleagues use SAS exclusively.
Today, one of them made the assertion that he believes the
numerical algorithms in SAS are superior to those in Splus
and R -- ie, optimization routines are faster in SAS, the SAS
Institute has teams of excellent numerical
2013 Feb 20
3
NLS results different from Excel -- Tricky fortunes nomination
Folks:
I thought the following excerpt from Bruce McCullough's post would be
a good candidate for the R fortunes package -- except that it's about
Excel, not R! So I nominate it... but leave it to others to say
whether it's really "qualified" to be nominated.
----
"The idea that the Excel solver "has a good reputation for being fast
and accurate" does not
2006 Feb 03
3
Sharing a Secondary Hard Drive
I just recently installed a second hard drive in my Samba server with the
hopes of sharing it with the rest of my home network. It seems like Samba
can not get the correct permissions to the drive, however. I have the
drive mounted under /media/public, and when I try to map a share directly
to it and open the share with a client, I get an
NT_STATUS_BAD_NETWORK_NAME error. When I map the
2005 May 03
3
(no subject)
Does anybory knows any work comparing R with other (charged) statistical softwares (like Minitab, SPSS, SAS)?
I work in a brasilian government bureau and I intend to use R as our preferable statistical software, but I have to show it's as good as the others. I also intend to use Weka, and for this one I have the same problem.
Can anyone help me?
Thanks
René M. Raupp
e-mail: rener@mpdft.gov.br
2013 Feb 20
1
NLS results different from Excel
The idea that the Excel solver "has a good reputation for being fast and
accurate" does not withstand an examination of the Excel solver's
ability to solve the StRD nls test problems. Solver's ability is
abysmal. 13 of 27 "answers" have zero accurate digits, and three more
have fewer than two accurate digits -- and this is after tuning the
solver to get a good
2010 Apr 15
3
Exporting an rgl graph
Hi the list,
I use rgl to produce a 3D graph. I would like to "show" this graph to
some collaborator. Is there a way to save it and send it to someone
else?
Christophe Genolini
2010 Sep 14
1
ASA John M. Chambers Statistical Software Award - 2011
John M. Chambers Statistical Software Award - 2011
Statistical Computing Section
American Statistical Association
The Statistical Computing Section of the American Statistical
Association announces the competition for the John M. Chambers
Statistical Software Award. In 1998 the Association for Computing
Machinery presented its Software System Award to John Chambers for the
design and development
2001 Jul 23
2
A useful GUI?
I saw an ad in the July 2001 Amstat News for a complex sample
survey analysis package called Wesvar. The package has
what appears to be a useful feature called a "Workbook"
by which the user navigates analysis output. This is a
hierarchical tree in which the user may click on a part
of the analysis (table, regression fit, descriptive stats,
etc.) so as to go directly to that output.
2001 Jan 10
2
Levenberg-Marquardt algorithm
Hi All,
Is the Levenberg-Marquardt algorithm available in R. This method combines the
steepest descent algorithm and Newton's method.
Thanks in Advance,
Dermot MacSweeney.
**************************************************************
Dermot MacSweeney NMRC,
Email: dsweeney at nmrc.ucc.ie Lee Maltings,
Tel: +353 21 904178 Prospect Row,
Fax: +353 21 270271 Cork,
WWW:
2003 Mar 26
1
nls
Hi,
df <- read.table("data.txt", header=T);
library(nls);
fm <- nls(y ~ a*(x+d)^(-b), df, start=list(a=max(df->y,na.rm=T)/2,b=1,d=0));
I was using the following routine which was giving Singular Gradient, Error in
numericDeriv(form[[3]], names(ind), env) :
Missing value or an Infinity produced when evaluating the model errors.
I also tried the
2002 Mar 11
1
problem with deriv3?
Using S+ 6 for Linux and
R 1.4.1
Taking verbatim some lines from S-Plus that work
perfectly, and running them on R, I get an
unexpected error message:
R : Copyright 2002, The R Development Core Team
Version 1.4.1 (2002-01-30)
> library(MASS)
> data <- read.table("/usr/local/data/mcmanus.dat",header=T)
> mcmanus.frm <-
2009 Oct 09
1
Any reference to Tukeyline algorithm?
Hi,
I am using "line" function to plot the line. And I would like to understand "Tukeyline" algorithm. Since, the line function is calling the Tukeyline algorithm(which is compiled code) using foreign function interface, I am not able to look into the source code of this algorithm. Can somebody help me out, so that I can refer the same.
Thanks in advance!!!
Thanks,
2012 Apr 19
2
Study design question; MLB; pay and performance.
Dear List Members,
I am in the process of designing a study examining pay and performance
in Major League Baseball across several seasons, and before I get too
deeply into it, I'd like to ask whether the group members think that
performance across seasons is independent, or if it needs to be treated
like a time-series variable so that lack of independence can be controlled.
Any ideas or
2009 Jun 15
1
multcomp: contrasts for count data
Hi,
I would like to derive p-values for pair-wise comparison (Tukey's) of
effects when the response is a count.
I am trying a test case where y ~ Po( lambda(x) ). x has three
levels : A, B and C with lambda(x) = 10, 20 and 20 respectively.
Hence, p-values for the contrast C - B should distribute uniformally.
I have implemented this test case as below but do not get uniform
2009 Jan 16
2
glmer documentation
Hello,
I am fitting a gmler using poisson, and I was looking for a documentation to
interpret correctly the output. I'm quite a beginner with these kind of
models.
I couldn't find something in the lme4 package manual. and on the internet
neither...
Thank you,
Raphaelle
--
View this message in context: http://www.nabble.com/glmer-documentation-tp21506036p21506036.html
Sent from the R