search for: grw

Displaying 13 results from an estimated 13 matches for "grw".

Did you mean: grow
1999 Mar 31
2
"dump" Splus -> R
Hi All, I just used "dump" on Splus to transfer a pile of survival objects from Splus 3.4 on Solaris 7 to R 0.63.3 on Intel. The only trick is that survival objects contain an element holding the original call that generated the object. When Splus writes these out, it doesn't mark them in any way, so when R tries to read them in, it ends up trying to reevaluate the call. Not
1999 Mar 31
2
"dump" Splus -> R
Hi All, I just used "dump" on Splus to transfer a pile of survival objects from Splus 3.4 on Solaris 7 to R 0.63.3 on Intel. The only trick is that survival objects contain an element holding the original call that generated the object. When Splus writes these out, it doesn't mark them in any way, so when R tries to read them in, it ends up trying to reevaluate the call. Not
2001 Jul 23
2
Installing RSPython with R 1.3.0
To get RSPython installed on my debian test box, I had to make a couple of changes not listed in ftp://www.omegahat.org/pub/Omega/RSPython/FAQ.html 1) I had to change $R_HOME/src/modules/X11 : $(R_X11_la): $(R_X11_la_OBJECTS) $(R_X11_la_DEPENDENCIES) $(SHLIB_LINK) -o $@ $(R_X11_la_LDFLAGS) $(R_X11_la_OBJECTS) $(R_X11_la_LIBADD) $(LIBS) to $(R_X11_la): $(R_X11_la_OBJECTS)
2001 Jul 13
6
AnonCVS
Hi All, I would like to use anonymous cvs, but it appears not to be working (again?). There was a discussion back in Jan-Feb about whether to continue supporting it, but it seemed that Tony Rossini got it working and the discussion left off there. Did someone decide to disable it, or is it just not working properly? Here's the details: $ cvs -d
2003 Jul 07
0
feature enhancement request & patch: dev.control(displaylist='en (PR#3424)
...tely. ------_=_NextPart_000_01C344B0.28BC0750 Content-Type: application/octet-stream; name="dev_control.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="dev_control.patch" diff -ur R-patched/src/library/base/R/device.R = R-patched-grw/src/library/base/R/device.R=0A= --- R-patched/src/library/base/R/device.R 2002-05-28 06:45:11.000000000 = -0400=0A= +++ R-patched-grw/src/library/base/R/device.R 2003-07-07 = 12:00:33.000000000 -0400=0A= @@ -180,9 +180,12 @@=0A= {=0A= if(!missing(displaylist)) {=0A= if(displaylist =3D=3D &q...
2004 Feb 27
1
Authentication problem when using LDAP
A colleague has seen a problem (with Samba 3.0), in using LDAP. A very simple version of the problem is as follows, where he tries to authenticate a user "grw" > > I am almost there... I get the following when I do a simple test to > > find the user 'grw' by attempting to change the password (even > > though I do not want Samba to change the pw, this just is a test) > > > > # smbpasswd -D 10 grw > &gt...
2010 May 13
1
GAM, GAMM and numerical integration, help please
...he GAM, I am able to fit a cubic-b spline but I do not know how to determine the equation for this spline nor how to integrate it/differentiate it (to obtain plots similar to 3c & f in Chaloupka & Limpus (1997)). What should I do next? >size <- seq(100,600,along.with=fitted(m1)) >grw <- fitted(m1) >bspline3 <- gam(grw~s(size, bs="cr", k=3)) >plot(grw~size,ylab="Growth (mm/yr)", xlab="Curved Carapace Length (mm)") #figure attached >lines(fitted(bspline3)~size, lwd=2) Thank you very much for any help! Claudia
2009 Feb 03
2
ThinkCell type waterfall charts in R?
Hi all, with PowerPoint and ThinkCell one can draw something they call waterfall chart and it looks like this: http://www.think-cell.com/products/images/waterfall.gif I found discussions on waterfall charts in the archive of this mailinglist, but unfortunately they looked totally different. Other names for this type of plot seem to be bridge chart, cascade chart, stair case chart, etc. but
1999 Jan 27
0
load() patch
...XP a, ans, e; + SEXP a, ans, e, aenv; int i; FILE *fp; @@ -1144,10 +1144,17 @@ if (TYPEOF(CAR(args)) != STRSXP) errorcall(call, "first argument must be a string\n"); - i = INTEGER(CADR(args))[0]; + // i = INTEGER(CADR(args))[0]; // what is this for? + + // GRW 1/26/99 GRW : added environment parameter so that the + // loaded objects can be placed where desired + aenv = CADR(args); + if (TYPEOF(aenv) != ENVSXP && aenv != R_NilValue) + error("invalid envir argument\n"); /* Process the saved file to obtain a list of saved...
2002 Oct 29
0
patch to mva:prcomp to use La.svd instead of svd (PR#2227)
...problem with svd() when n << p, here is a patch to prcomp() which substitutes La.svd() instead of svd(). -Greg (This is really a feature enhancement, but submitted to R-bugs to make sure it doesn't get lost. ) *** R-1.6.0/src/library/mva/R/prcomp.R Mon Aug 13 17:41:50 2001 --- R-1.6.0-GRW//src/library/mva/R/prcomp.R Tue Oct 29 11:57:23 2002 *************** *** 1,18 **** prcomp <- function(x, retx = TRUE, center = TRUE, scale. = FALSE, ! tol = NULL) { x <- as.matrix(x) x <- scale(x, center = center, scale = scale.) ! s <- svd(x, nu...
2008 Apr 30
8
Why R is 200 times slower than Matlab ?
...und that R is 200 times slower than matlab. Since I am newbie to R, I must be missing some important programming tips. Please help me out on this. Here is the function: ## make the full pair-wise permutation of a vector ## input_fc=c(1,2,3); ## output_fc=( 1 1 1 2 2 2 3 3 3 1 2 3 1 2 3 1 2 3 ); grw_permute = function(input_fc){ fc_vector = input_fc index = 1 k = length(fc_vector) fc_matrix = matrix(0,2,k^2) for(i in 1:k){ for(j in 1:k){ fc_matrix[index] = fc_vector[i] fc_matrix[index+1] = fc_vector[j] index = index+2 } } return(fc_matrix) } For an input vector of size 300. I...
2002 Oct 09
1
problems with missing values created by conversion using as.matri (PR#2130)
...quot; string and not a missing value. Why isn't it using as.character() for this? For completeness here's the patch to make this change, but I have not explored what other side effects this might have. *** R-1.6.0/src/library/base/R/dataframe.R Thu Aug 29 03:41:42 2002 --- R-1.6.0-GRW//src/library/base/R/dataframe.R Wed Oct 9 12:29:11 2002 *************** *** 931,937 **** if (is.character(X[[j]])) next xj <- X[[j]] ! X[[j]] <- if(length(levels(xj))) as.vector(xj) else format(xj) } } X <- unlist(X, re...
2008 Jun 30
4
Rebuild of kernel 2.6.9-67.0.20.EL failure
Hello list. I'm trying to rebuild the 2.6.9.67.0.20.EL kernel, but it fails even without modifications. How did I try it? Created a (non-root) build environment (not a mock ) Installed the kernel.scr.rpm and did a rpmbuild -ba --target=`uname -m` kernel-2.6.spec 2> prep-err.log | tee prep-out.log The build failed at the end: Processing files: kernel-xenU-devel-2.6.9-67.0.20.EL Checking