Not sure that I can help with the problem, but would like to track
it down...
I was wondering if someone could help me with a problem getting locfit
running.
I am running Digital Unix 3.2D on an alphastation, with R 0.61.1
Is that a 64 bit system? I know int's and long int's caused problems
with Locfit and Splus on 64 bit alpha's. Changing int's to long int's
solved that. But I don't have access to any 64 bit systems for testing,
so there may be more.
Some other examples to try (might narrow down the source of the problem):
fit <- locfit(~geyser,alpha=c(0.1,0.80),flim=c(1,6),itype="mult")
data(ethanol,package=locfit)
fit <- locfit(NOx~E,data=ethanol)
fit <- locfit(NOx~E,data=ethanol,ev="data")
(I assume R uses long int's, but can't find that explicitly in the
documentation. If everything else fails, try changing
typedef long int INT;
to
typedef long int int;
in the locfit/src/local.h file, and touch *.c, install again etc).
Regards,
Clive.