search for: splitstring

Displaying 7 results from an estimated 7 matches for "splitstring".

Did you mean: split_string
2016 Jul 18
1
failed to assign RegisteredNativeSymbol for splitString
...R version 3.2.5 Patched (2016-05-05 r70929) -- "Very, Very Secure Dishes" Copyright (C) 2016 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu/x86_64 (64-bit) $ /usr/local/pkg/R-3.2-branch-20160718/bin/R --vanilla --no-restore --no-save --silent > splitString <- function(...) { print("Test, do nothing") } > invisible(tools::toTitleCase) Warning message: failed to assign RegisteredNativeSymbol for splitString to splitString since splitString is already defined in the 'tools' namespace Another way to trigger that warnin...
2000 Feb 18
1
splitstr problem
Hi, all. Using the patched version of R-0.99.0, I cannot reproduce the following example from the strsplit documentation: (Example) unlist(strsplit("a.b.c", ".")) ## [1] "" "" "" "" "" ## Note that `split' is a regexp! ## If you really want to split on `.', use unlist(strsplit("a.b.c", "\."))
2000 Feb 18
0
splitstr problem solved
Hi. Robert Gentleman's solution works. Thanks. This seems to be a documentation bug; I will submit a separate report to the bug list for completeness. Matt On Sat, 19 Feb 2000, Robert Gentleman wrote: > On Fri, Feb 18, 2000 at 02:32:54PM -0500, Matthew Wiener wrote: > > Hi, all. > > > > Using the patched version of R-0.99.0, I cannot reproduce the following >
2006 Mar 03
1
extracting p-values from lmer outputs
...really no more elegant way to do this? - James Myers National Chung Cheng University Minhsiung Chiayi 621 Taiwan lmerout = lmer(Y ~ X1 * X2 + (1|Subj), data = dat, family = "binomial") sink("lmerout.txt") lmerout sink() lmerout.string = readChar("lmerout.txt",20000) splitstring = strsplit(lmerout.string,"\r\n") # If I counted right, the line with the interaction is [19]: interstring = strsplit(splitstring[[1]][19]," ") # Lines contain TABs, so the p-value is the eighth element along: pvalue = as.numeric(interstring[[1]][8]) if(pvalue < .05) print(&q...
2007 Jan 11
2
In-place editor for a whole form?
I want to implement in-place editing for a hierarchical structure where the nodes are not simple text fields, but need to be represented by at least two input elements. The Rails helpers only support in-place editing for a text field, scriptaculous''s controls.js beyond that implements support for an in-place editor containing a select element. I need an editor where I essentially
2009 Dec 08
0
[LLVMdev] More questions on CompilerDriver.
Hi Sanjiv, On Tue, Dec 8, 2009 at 4:41 AM, Sanjiv Gupta <sanjiv.gupta at microchip.com> wrote: > Mikhail Glushenkov wrote: >> >> > 2. Is there anyway to call a C++ hook from inside actions? >> > for example >> > (actions (case >> >         (not_empty "Wl,"), (append_cmd "$CALL(Myhook)" ))) >> >> Not yet, this is
2009 Dec 08
2
[LLVMdev] More questions on CompilerDriver.
Mikhail Glushenkov wrote: > > > 2. Is there anyway to call a C++ hook from inside actions? > > for example > > (actions (case > > (not_empty "Wl,"), (append_cmd "$CALL(Myhook)" ))) > > Not yet, this is something I'm working on right now. > Hi Mikhail, Did you get a chance to do something about this? > > > BTW, I've