Displaying 7 results from an estimated 7 matches for "dseplus".
Did you mean:
dplus
2001 Apr 12
2
Re: stop() and Rcmd (PR#910)
...completed succesfully.
In my experiments it *does* put out an error but continues. This is
intentional, as some Perls are rather flaky. If you want to change it,
remove the leading `-' in line 29 of etc/Makeconf-tests.
> > This report is based on output from Rcmd check for the bundle dseplus
> > version 2001.4-1. The test curve/tests/crvB07.R does a comparison which
> > on NT is outside of tolerance and executes stop(). (The comparison value
> > has been adjusted so that future versions of dseplus will not fail on
> > this test.)
>
> Perl version? (Lots...
2004 Apr 28
4
numericDeriv
Dear All,
I am trying to solve a Generalized Method of Moments problem which
necessitate the gradient of moments computation to get the
standard errors of estimates.
I know optim does not output the gradient, but I can use numericDeriv to
get that. My question is: is this the best function to do this?
Thank you
Jean,
2001 Oct 12
0
Econometrics ...
...> correlation in regression residuals)? I'm pretty sure most of
> the stuff
> > is out there in assorted packages, under different names.
>
> That's a broad subject area, it would be a pretty big package. My
> small part of it (the "dse" and "dseplus" bundles on CRAN) is
> already already divided into many packages. You should also look
> at "ts", "tseries", and "strucchange".
[...]
> > However, it
> > would make my life, and that of my students, easier if it was
> all in on...
2001 Oct 15
0
FW: Econometrics ...
...regression residuals)? I'm pretty sure most of
> > the stuff
> > > is out there in assorted packages, under different names.
> >
> > That's a broad subject area, it would be a pretty big package. My
> > small part of it (the "dse" and "dseplus" bundles on CRAN) is
> > already already divided into many packages. You should also look
> > at "ts", "tseries", and "strucchange".
>
> [...]
>
> > > However, it
> > > would make my life, and that of my students, easie...
2002 Oct 06
1
R-1.6.0
...repeated, event,
ordinal
-- Bioconductor packages Biobase, annotate, affy, AnnBuilder, edd,
genefilter,
geneplotter, rhdf5, marrayTest, marrayClasses, marrayInput,
marrayPlots,
multtest, ROC, tkWidgets
-- snow from Tierney
-- deal from gR
-- from Devel Dopt, GRASS, PHYLOGR, R2HTML, RPgSQL, dseplus, pls,
runstat,
multidim, mclust, ensemble, locfit, write-snns
-- from OmegaHat gtk, OOP, RGtk, RGtkViewers, RObjectTables, RSPerl,
RSPython
what does NOT load
tkrplot
> library(tkrplot)
Loading required package: tcltk
dyld: /usr/local/lib/R/bin/R.bin malformed library:
/usr/local/lib/R/...
2006 Dec 08
2
dyn.load and function calls without 'PACKAGE' argument
I'm writing a package that interfaces to the FAME database, via a
library of compiled C routines accessible through a Linux .so file. My
.onLoad() function loads the .so like this:
dyn.load("/opt/fame/timeiq/lib/linux_x86/libjchli.so", local = F)
and after that I also load my own fame.so via
library.dynam("fame", package = "fame")
The code in fame.so uses
2005 May 05
2
Numerical Derivative / Numerical Differentiation of unknown funct ion
Hi,
I have been trying to do numerical differentiation using R.
I found some old S code using Richardson Extrapolation which I managed to get
to work.
I am posting it here in case anyone needs it.
########################################################################
richardson.grad <- function(func, x, d=0.01, eps=1e-4, r=6, show=F){
# This function calculates a numerical approximation