search for: r51822

Displaying 5 results from an estimated 5 matches for "r51822".

Did you mean: 51822
2010 May 30
1
Bug with ..0
This function call returns 3 but should return 32. ..0 has no special significance in R as far I know yet it seems to be acting as if it were ..1 . Comments? > ff <- function(..0, ...) ..0 > ff(32, 3) [1] 3 > R.version.string [1] "R version 2.11.0 Patched (2010-04-26 r51822)" > win.version() [1] "Windows Vista (build 6002) Service Pack 2"
2010 Apr 30
1
Problem: packages TinnR, Hmisc, applications Tinn-R and R version 2.11.0
...;selection.r', 'block.r', 'lines.r'), sep='') #=============================================================== when R was rebooted I received the messages below: IO: #=============================================================== R version 2.11.0 Patched (2010-04-26 r51822) Copyright (C) 2010 The R Foundation for Statistical Computing ISBN 3-900051-07-0 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative p...
2010 May 06
0
problems in 2.11 with Hmisc
Hello, running windows 7 in an HP laptop with 4 Gb RAM I have Tinn-R set up, loading R I get R version 2.11.0 Patched (2010-04-26 r51822) Copyright (C) 2010 The R Foundation for Statistical Computing ISBN 3-900051-07-0 ... Type 'q()' to quit R. Loading required package: tcltk Loading Tcl/Tk interface ... done Loading required package: Hmisc Loading required package: survival Loading required package: stats Loading required p...
2010 May 26
2
segfault on 2.11.0 with large POSIXct vector using as.character
Running "as.character" on a large POSIXct causes a segfault on my 2.11 (2010-04-22) install. Seems to crash at around 9e4 ... on OSX and Ubuntu at least. > invisible(as.character(Sys.time()+1:7e4)) > invisible(as.character(Sys.time()+1:8e4)) > invisible(as.character(Sys.time()+1:9e4)) Error: segfault from C stack overflow > invisible(as.character(Sys.time()+1:5e5)) Error:
2010 May 24
2
AM/PM strptime %p failing 2.11.0 WinXP
I am attempting to import dates in the following format to R: 5/20/2010 6:45:32 PM Unfortunately I am unable to get the AM/PM function (%p) to work correctly under either 2.11.0 or 2.8.1. > strptime("5/20/2010 6:45:32 PM", "%m/%d/%Y %I:%M:%S %p") [1] NA but > strptime("5/20/2010 6:45:32", "%m/%d/%Y %I:%M:%S") [1] "2010-05-20 06:45:32"