Displaying 5 results from an estimated 5 matches for "delcol".
Did you mean:
delcoe
2002 Feb 04
1
delcol() of Splus
Dear all,
There is this delcol() function in Splus. It is a support function for
drop1.lm(). But it seems it disappears from R. Could some one tell me
whether there is any equivalent function of delcol() in R or is there any
other way that I can implement its functionality? Your help is highly
appreciated!!!
Regards,
-Ji...
2007 Feb 13
1
errors when installing new packages
...==========================================
downloaded 183Kb
* Installing *source* package 'lars' ...
** libs
gfortran -fpic -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2
-fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32
-march=i386 -mtune=generic -fasynchronous-unwind-tables -c delcol.f
-o delcol.o
make: gfortran: Command not found
make: *** [delcol.o] Error 127
ERROR: compilation failed for package 'lars'
** Removing '/usr/lib/R/library/lars'
The downloaded packages are in
/tmp/RtmpxYqqFS/downloaded_packages
Warning message:
installation of package '...
2009 Jan 13
2
Using fortran code which call LAPACK subroutines
...can detect external BLAS and LAPACK libraries./
but nevertheless I have to include something more? or modify the script?
-should I compile from SHLIB with other options or include it directly
into a package and cretae a makevars or PACKAGE_LIBS...? I'm lost...
The subroutine I try to use is delcols.f
(http://www.maths.manchester.ac.uk/~clucas/updating/addcols.f) which calls
* .. External Subroutines ..
EXTERNAL DGEQRF, DLASR, DROT, DROTG, XERBLA
Thank you very much!!
2004 Feb 12
1
suggestion "suggestion" and dataframe operations
...ters to specify what statistics I would like.
this could be useful, too.
another small enhancement: there are four elementary data frame
operations that bedevil novices, so they really should have named
function wrappers:
delrow( dataframe d, index=45);
insrow( dataframe d, (row)vector v);
delcol( dataframe d, "name");
inscol( dataframe d, (col)vector v);
I looked at my R "bible" (venables&ripley), too, but here too it is not
as clear as it needs to be. yes, this may be programmable, but it ain't
as obvious as it should be for beginners.
regards,
/iaw
2004 Feb 24
0
Suggestions ?!?!
...eters to specify what
statistics I would like. this could be useful, too.
* another small enhancement: there are four elementary data frame
operations that bedevil novices, so they really should have named
function wrappers:
delrow( dataframe d, index=45);
insrow( dataframe d, (row)vector v);
delcol( dataframe d, "name");
inscol( dataframe d, (col)vector v);
Even a simple alias would do (maybe named row.delete, column.delete). I
looked at my R "bible" (venables&ripley), too, but here too it is not as
clear as it needs to be. yes, these operations are programmable, bu...