Displaying 3 results from an estimated 3 matches for "tble".
Did you mean:
table
2007 Jun 04
3
Extracting lists in the dataframe $ format
...ts can be printed successfuly but are not agreeable to the plot() and lm() functions shown below as are their df$out references. Reading the documentation for plot and lm hasn't helped yet. Thanks in advance - Stan.
> df=data.frame(out=1:4*3,pred1=1:4,pred2=1:4*2)
> regression=function(tble,a,b)
+ {
+ plot.new()
+ plot(tble[a]~tble[b])
+ lmm=lm(tble[a]~tble[b])
+ abline(lmm)
+ anova(lmm)
+ }
> df[1]
out
1 3
2 6
3 9
4 12
> df
out pred1 pred2
1 3 1 2
2 6 2 4
3 9 3 6
4 12 4 8
&...
2010 Aug 16
1
Problem with cast {reshape}: Error in match.fun(FUN) : could not find function "Negate"
Dear All
I'm having problem with some script which worked a few months ago (on a
different computer that might well have had a different version of R
installed, so perhaps it has to do with the old version of R?):
library(reshape)
Loading required package: plyr
> tble.data <- melt.array(interp, varnames=c("tme","lon","lat"))
>
> allyrs.interp <- cast(tble.data,formula= lon ~ lat ~ tme)
Error in match.fun(FUN) : could not find function "Negate"
> class(interp)
[1] "array"
> dim(interp)
[1] 60 95...
2005 Nov 25
0
Fix syscalls with more than four arguments on parisc
...-ffixed-r20 so that it doesn't clobber
- * this register by mistake.
- */
-
-#include <klibc/compiler.h>
-#include <errno.h>
-
-long __syscall_common(long a0, long a1, long a2, long a3, long a4, long a5)
-{
- register unsigned long rv asm ("r28");
-
- asm volatile("\tble 0x100(%%sr2, %%r0)\n"
- : "=r" (rv)
- : "r" (a0), "r" (a1), "r" (a2), "r" (a3), "r" (a4), "r" (a5)
- : "%r1", "%r2", "%r29", "%r31");
-
- if ( __unlikely(rv >=...