Displaying 5 results from an estimated 5 matches for "primfun".
2000 Feb 07
4
Segmentation fault, devPS.c, 0.99.0 (PR#413)
...5 0x80a33ab in do_plot_new (call=0x405ba44c, op=0x402e01b8, args=0x409418e0,
env=0x40941944) at plot.c:370
370 dd = GNewPlot(call != R_NilValue, ask);
(gdb) up
#6 0x8095765 in do_internal (call=0x405ba4b0, op=0x402d8d00, args=0x405ba49c,
env=0x40941944) at names.c:862
862 args = PRIMFUN(INTERNAL(fun)) (s, INTERNAL(fun), args, env);
#7 0x807c6a1 in Rf_eval (e=0x405ba4b0, rho=0x40941944) at eval.c:172
172 tmp = PRIMFUN(op) (e, op, CDR(e), rho);
(gdb) up
#8 0x807cb40 in Rf_applyClosure (call=0x405b6a7c, op=0x405ba550,
arglist=0x402d8008, rho=0x409437bc, suppliedenv=0x402d...
2013 Apr 26
1
Lubuntu 13.04 raring ringtail: Problems installing pnmath_0.0-4
...indices
** building package indices
** testing if installed package can be loaded
Error in dyn.load(file, DLLpath = DLLpath, ...) :
unable to load shared object
'/usr/local/lib/R/site-library/pnmath/libs/pnmath.so':
/usr/local/lib/R/site-library/pnmath/libs/pnmath.so: undefined symbol:
PRIMFUN
Error: loading failed
Execution halted
ERROR: loading failed
* removing ‘/usr/local/lib/R/site-library/pnmath’
I have installed sufficient libraries as to compile R itself from source
without problems!
Kjetil
[[alternative HTML version deleted]]
1999 Mar 01
1
Inconsistencies with is.function
...n(sin)
[1] TRUE
> debug("[<-")
Error in debug("[<-") : argument must be a function
> is.function(get("[<-"))
[1] TRUE
>
The problem having to do with .Primitive functions. R should agree
with itself on what is a function! to work around, I used
is.Primfun <- function(fun) is.function(fun) && is.null(body(fun))
but I'm not sure if that is failsafe.
Kjetil Halvorsen
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "i...
2012 Aug 09
4
debug vs regular mode
Dear all,
I had a R segmentation fault, and then invoked debug mode and ran step
by step.
When I reached "terms(Y~X1*X2*...*X16)", I would then have
"segmentation" fault. However, if I just ran this under regular "R
interactive" mode, it would be fine though taking long time.
My questions are:
1. Is there a known limit of terms for a formula?
2. Why does the
2012 Aug 09
4
debug vs regular mode
Dear all,
I had a R segmentation fault, and then invoked debug mode and ran step
by step.
When I reached "terms(Y~X1*X2*...*X16)", I would then have
"segmentation" fault. However, if I just ran this under regular "R
interactive" mode, it would be fine though taking long time.
My questions are:
1. Is there a known limit of terms for a formula?
2. Why does the