search for: mvb

Displaying 20 results from an estimated 32 matches for "mvb".

Did you mean: movb
2009 Mar 10
1
suggestion/request: install.packages and unnecessary file modifications
...'t cope. The culprit appears to be 'utils:::fixup.package.URLs'. Adding the commented lines below, near the end of the function, avoids the unnecessary rewrite. Mark Bravington CSIRO Hobart Australia for (f in files) { page <- readLines(f) old.page <- page # MVB page <- gsub(olddoc, doc, page, fixed = TRUE, useBytes = TRUE) page <- gsub(oldbase, base, page, fixed = TRUE, useBytes = TRUE) page <- gsub(oldutils, utils, page, fixed = TRUE, useBytes = TRUE) page <- gsub(oldgraphics, graphics, page, fixed = TRUE,...
2003 Mar 26
2
predict (PR#2685)
...ncluding the commented line below in `model.frame.default': <<...>> vars <- attr(formula, "variables") predvars <- attr(formula, "predvars") if (is.null(predvars)) predvars <- vars varnames <- as.character(predvars[-1]) # MVB: was vars[-1] not predvars[-1] variables <- eval(predvars, data, env) <<...>> This has the side-effect that there are some ugly column names in the model.frame if e.g. a `poly' term is used, but doesn't actually seem to hurt the prediction. However, that doesn...
2004 Dec 06
0
a better "source(echo=TRUE)" {was "....how to pause...."}
You might want to have a look at 'source.mvb' & friends in the 'mvbutils' package. It's designed to allow control of nested sourcing, and to allow interspersed data and commands in a single self-contained file. Unlike 'source', 'source.mvb' reads each statement and immediately executes it, before proceeding...
2016 Dec 12
0
[RE: why does parent.frame() cycle when called from inside capture.output()?]
...er people (don't) understand the behavior, and (3) how we might fix or work around it. I notice some other people also seem to be diffident about posting on R-devel; perhaps I should conclude that bugs like this are below the radar for busy statisticians. FWIW, after playing around a bit with mvbutils::mvb.parent.frame, I now have a working "desubN" (see the attachment on my original message, and this one). I don't really have a good understanding of *why* it now works, and why the original version didn't work... Thanks again Mark. Also, nice hacking. Frederick ----- Fo...
2016 Dec 12
2
why does parent.frame() cycle when called from inside capture.output()?
Hello R devel/help, I ran into this strange behavior: # showstack is supposed to walk through the stack of parent # environments when it is called: showstack = function() { env = environment() for(i in 1:12) { env = do.call(parent.frame, list(), env=env) print(env) } } # a simple chain of functions: g3=function(t) showstack()
2016 Dec 12
2
why does parent.frame() cycle when called from inside capture.output()?
Hello R devel/help, I ran into this strange behavior: # showstack is supposed to walk through the stack of parent # environments when it is called: showstack = function() { env = environment() for(i in 1:12) { env = do.call(parent.frame, list(), env=env) print(env) } } # a simple chain of functions: g3=function(t) showstack()
2003 Mar 26
5
predict (PR#2686)
...is.null(xl <- xlev[[nm]])) { xi <- data[[nm]] if (is.null(nxl <- levels(xi))) warning(paste("variable", nm, "is not a factor")) else { xi <- xi[, drop = TRUE] nxl <- levels( xi) # MVB: remove droppees if (any(m <- is.na(match(nxl, xl)))) stop(paste("factor", nm, "has new level(s)", nxl[m])) } } } else if (drop.unused.levels) { <<...>> cheers Mark **************************...
2003 Mar 26
0
termplot (PR#2687)
...f `termplot': n.tms <- ncol(tms <- as.matrix(if (se) terms$fit else terms)) mf <- model.frame(model) if (is.null(data)) data <- eval(model$call$data, envir) if (is.null(data)) data <- mf data <- data[ dimnames( tms)[[1]], ] # MVB nmt <- colnames(tms) cheers Mark Mark Bravington CSIRO (CMIS) PO Box 1538 Castray Esplanade Hobart TAS 7001 phone (61) 3 6232 5118 fax (61) 3 6232 5012 Mark.Bravington@csiro.au --please do not edit the information below-- Version: platform = i386-pc-mingw32 arch = i386 os = mingw3...
2006 Mar 06
7
LVS-DR + Shorewall Upgrade 3.0.2 -> 3.0.4 => Trouble
...shorewall/rules a rule saying ACCEPT net all tcp http Since it did NOT work to use ''dmz'' with 3.0.2 I assume that we did something wrong and it only worked by chance :(. Nevertheless, I''m baffled. How do I do it the right way in 3.0.4? Thanks in advance MvB PS: Of course the config of LVS inside the Kernel is the same... ------------------------------------------------------- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime dev...
2010 Jan 15
1
Using multicore with an open pdf device results in corrupt pdf (PR#14186)
...kewt, package:rgl, package:ggplot2, package:reshape, package:plyr, package:proto, package:VGAM, package:stats4, package:splines, package:latticeExtra, package:RColorBrewer, package:doMC, package:multicore, package:foreach, package:codetools, package:iterators, package:abind, package:seqinr, package:mvbutils, mvb.session.info, package:tools, package:robust, package:rrcov, package:pcaPP, package:mvtnorm, package:robustbase, package:MASS, package:glmmML, package:playwith, package:grid, package:gWidgetsRGtk2, package:cairoDevice, package:lattice, package:gWidgets, package:graphics, package:grDevices,...
2013 Oct 14
1
centos 6.x glusterfs 3.2.7 firewall blocking
centos 6.x gluster --version glusterfs 3.2.7 built on Jun 11 2012 13:22:29 The problem is that when i'm trying to probe like this: gluster peer probe [hostname] It never probe's because the firewall is blocking (when I turn it of on both sides everything works) But I want to keep the firewall running. A google search give's me serveral possible ports to open , so I
2009 Oct 30
1
parse_Rd and/or lazyload problem
...glish_Australia.1252;LC_CTYPE=English_Australia.1252;LC_MONETARY=English_Australia.1252;LC_NUMERIC=C;LC_TIME=English_Australia.1252 Search Path: .GlobalEnv, ROOT, package:grDevices, package:ad, package:chstuff, package:handy2, package:tweedie, package:statmod, package:handy, package:debug, package:mvbutils, mvb.session.info, package:tools, package:tcltk, package:stats, package:graphics, package:utils, package:methods, Autoloads, package:base
2002 Sep 19
3
savehistory directories and quitting R (PR#2038)
...tion below-- Version: platform = i386-pc-mingw32 arch = i386 os = mingw32 system = i386, mingw32 status = major = 1 minor = 5.0 year = 2002 month = 04 day = 29 language = R Windows 2000 Professional (build 2195) Service Pack 2.0 Search Path: .GlobalEnv, package:handy, package:debug, mvb.session.info, package:mvbutils, package:tcltk, Autoloads, package:base -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe"...
2007 Jan 02
4
Am I missing something about debugging?
I would like to be able to trace execution into calls below the current function, or to follow execution as calls return. This is roughly the distinction between "step" and "next" in many debuggers. I would also like to be able to switch to a location further up the call stack than the location at which I enter the debugger, to see the context of the current operations. Are
2006 Jan 14
2
initialize expression in 'quasi' (PR#8486)
...English_Australia.1252;LC_NUMERIC=C;LC_TIME=English_Australia.1252 Search Path: .GlobalEnv, package:mgcv, package:AusNew, package:MASS, package:RODBC, package:lattice, package:splines, package:methods, package:stats, package:graphics, package:grDevices, package:datasets, package:RBigData, package:mvbutils, mvb.session.info, package:tools, package:utils, package:RBigData, package:RUtilities, package:RBigLibrary, package:g.data, Autoloads, package:base Bill Venables, CMIS, CSIRO Laboratories, PO Box 120, Cleveland, Qld. 4163 AUSTRALIA Office Phone (email preferred): +61 7 3826 7251 Fax (if...
2002 Dec 27
0
parse and pushBack (PR#2396)
...elow-- Version: platform = i386-pc-mingw32 arch = i386 os = mingw32 system = i386, mingw32 status = major = 1 minor = 6.1 year = 2002 month = 11 day = 01 language = R Windows 2000 Professional (build 2195) Service Pack 2.0 Search Path: .GlobalEnv, ROOT, package:handy, package:debug, mvb.session.info, package:mvbutils, package:tcltk, Autoloads, package:base
2003 Feb 27
0
unwanted coercion of length 0 vectors (PR#2587)
...elow-- Version: platform = i386-pc-mingw32 arch = i386 os = mingw32 system = i386, mingw32 status = major = 1 minor = 6.2 year = 2003 month = 01 day = 10 language = R Windows 2000 Professional (build 2195) Service Pack 2.0 Search Path: .GlobalEnv, ROOT, package:handy, package:debug, mvb.session.info, package:mvbutils, package:tcltk, Autoloads, package:base
2003 Aug 05
1
(PR#3658)
...= i386, mingw32 status = major = 1 minor = 7.1 year = 2003 month = 06 day = 16 language = R Windows 2000 Professional (build 2195) Service Pack 3.0 Search Path: .GlobalEnv, package:methods, package:ctest, package:mva, package:modreg, package:nls, package:ts, package:handy, package:debug, mvb.session.info, package:mvbutils, package:tcltk, Autoloads, package:base ******************************* Mark Bravington CSIRO (CMIS) PO Box 1538 Castray Esplanade Hobart TAS 7001 phone (61) 3 6232 5118 fax (61) 3 6232 5012 Mark.Bravington@csiro.au
2003 Oct 28
0
data.frame replacement (PR#4820)
...= major = 1 minor = 8.0 year = 2003 month = 10 day = 08 language = R Windows 2000 Professional (build 2195) Service Pack 4.0 Search Path: .GlobalEnv, ROOT, package:lattice, package:methods, package:ctest, package:mva, package:modreg, package:nls, package:ts, package:handy, package:debug, mvb.session.info, package:mvbutils, package:tcltk, Autoloads, package:base
2009 Oct 16
0
post-installation startup problem with 2.10.0
...TE=English_Australia.1252;LC_CTYPE=English_Australia.1252;LC_MONETARY=English_Australia.1252;LC_NUMERIC=C;LC_TIME=English_Australia.1252 Search Path: .GlobalEnv, package:grDevices, package:ad, package:chstuff, package:handy2, package:tweedie, package:statmod, package:handy, package:debug, package:mvbutils, mvb.session.info, package:tools, package:tcltk, package:stats, package:graphics, package:utils, package:methods, Autoloads, package:base