search for: modt

Displaying 4 results from an estimated 4 matches for "modt".

Did you mean: mode
2012 Apr 11
1
Problem with effects package
...d paste the following: library( catdata ) data( unemployment ) unempt <- unemployment unempt$durbin <- unempt$durbin - 1 library( reshape ) unempt <- melt( table( unempt ) ) unempw <- cast( unempt, age ~ durbin ) names( unempw ) <- c( 'age', 'short', 'long' ) modt <- glm( durbin ~ age, weights = value, family = binomial, data = unempt ) modw <- glm( cbind( short, long ) ~ age, family = binomial, data = unempw ) library( effects ) modt.ef <- effect( 'age', modt ) # works! modw.ef <- effect( 'age', modw ) # doesn't work! # Error...
2002 May 10
1
Parsing output, separating motd and module-list
I'm working on a frontend to rsync, and I've got a problem. It's easy to get a list of files and directories from a specific path on an rsync server. But from the root, I've found it very difficult to get a list of modules. I cannot see when the modt stops, and when the list begins. Can anybody help? -- Mvh. Niels Andersen
2005 Dec 06
3
strange behavior of loess() & predict()
Dear altogether, I tried local regression with the following data. These data are a part of a bigger dataset for which loess is no problem. However, the plot shows extreme values and by looking into the fits, it reveals very extreme values (up to 20000 !) although the original data are > summary(cbind(x,y)) x y Min. :1.800 Min. :2.000 1st Qu.:2.550
2004 Feb 17
1
[patch] Make robust_rename() handle EXDEV.
All callers of robust_rename() call copy_file() if EXDEV is received. This patch moves the copy_file() call into robust_rename(). Patch Summary: -12 +1 backup.c -15 +2 rsync.c -9 +33 util.c -------------- next part -------------- patchwork diff util.c --- util.c 2004-02-17 09:58:44.000000000 -0500 +++ util.c 2004-02-17 10:21:22.000000000 -0500 @@ -355,16 +355,40 @@