search for: hiiu

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

Did you mean: hii
2013 Apr 11
2
(no subject)
...m searches incl RSiteSearch). Thanks in advance, Kenn -- P.S. Apologies if this is double posted - there was a network error and the first message doesn't seem to have been sent out (but maybe it was). Kenn Konstabel Department of Chronic Diseases National Institute for Health Development Hiiu 42 Tallinn, Estonia [[alternative HTML version deleted]]
2011 Mar 03
1
sqlFetch (RODBC) question
...stats graphics grDevices utils datasets methods base other attached packages: [1] RODBC_1.3-2 loaded via a namespace (and not attached): [1] iterators_1.0.3 tools_2.12.1 Thanks in advance, Kenn Kenn Konstabel Department of Chronic Diseases National Institute for Health Development Hiiu 42 Tallinn, Estonia
2011 Mar 25
2
Preserving the class of POSIXt objects
...r <- 0L ## x$hour[] <- 0L After these changes, [ and length would work "correctly" (in my possibly naive understanding), and length(trunc(foo, "day")) would return 10 in the example above. Best regards, Kenn Kenn Konstabel National Institute for Health Development Hiiu 42 Tallinn Estonia
2011 Mar 23
0
suggestions re trunc.POSIXt
...0 by x$sex[] <- 0 (the second version would preserve the number of elements). (Changed version at the end). It doesn't seem like this change could possibly break any existing code. Best regards, Kenn Kenn Konstabel Department of Chronic Diseases National Institute for Health Development Hiiu 42 Tallinn, Estonia ###### trunc.POSIXt <- function (x, units = c("secs", "mins", "hours", "days"), ...) { # changed x$sec <- 0 to x$sec[]<-0 to preserve the number of elements units <- match.arg(units) x <- as.POSIXlt(x) if (len...
2013 Apr 11
0
Notes and warnings in building a package ('ms-dos style file name', 'no visible binding' and using .C("bincount", ..., PACKAGE = "base"))
...PI, for use only by R itself and subject to change without notice." I understand the reasons but what would be a good solution if I like the way it works now? Many thanks in advance, Kenn Kenn Konstabel research fellow Department of Chonic Diseases National Institute for Health Development Hiiu 42 Tallinn, Estonia [[alternative HTML version deleted]]
2011 Mar 21
1
Curry with `[.function` ?
...only within functions that one could be bothered to redefine this way - probably none.) Thanks in advance for any ideas and comments (including the ones saying that this is an awful idea) Best regards, Kenn Kenn Konstabel Department of Chronic Diseases National Institute for Health Development Hiiu 42 Tallinn, Estonia [[alternative HTML version deleted]]
2011 Jan 04
5
scoping/non-standard evaluation issue
Dear r-devel list members, On a couple of occasions I've encountered the issue illustrated by the following examples: --------- snip ----------- > mod.1 <- lm(Employed ~ GNP.deflator + GNP + Unemployed + + Armed.Forces + Population + Year, data=longley) > mod.2 <- update(mod.1, . ~ . - Year + Year) > all.equal(mod.1, mod.2) [1] TRUE > > f <-