POSIXlt is a list and it is not a list of dates or times, it is a list
of
> x <- as.POSIXlt(Sys.Date())
> names(x)
[1] "sec" "min" "hour" "mday" "mon" "year" "wday" "yday"
"isdst"
So if you want to match these things, you should use POSIXct or any
other numeric-based format (as POSIXct
> "RobMcG" == McGehee, Robert
> on Tue, 29 Jun 2010 10:46:06 -0400 writes:
RobMcG> I came across the below mis-feature/bug using match with POSIXlt
objects
RobMcG> (from strptime) in R 2.11.1 (though this appears to be an old
issue).
>> x <- as.POSIXlt(Sys.Date())
>
2010/6/30 Uwe Ligges
> On 30.06.2010 15:44, Dominick Samperi wrote:
>
> Another odd thing about this is that everything worked under Windows 64bit
>> before the changes were made to serialize the build of packages that
>> depend on each other.
>>
> That's untrue. I try to serialize some things o
> "MM" == Martin Maechler
> on Fri, 2 Jul 2010 12:22:07 +0200 writes:
> "RobMcG" == McGehee, Robert
> on Tue, 29 Jun 2010 10:46:06 -0400 writes:
RobMcG> I came across the below mis-feature/bug using match with POSIXlt
objects
RobMcG> (from strptime) in R 2.11.1
On 02.07.2010 16:10, Dominick Samperi wrote:
2010/6/30 Uwe Ligges
On 30.06.2010 15:44, Dominick Samperi wrote:
Another odd thing about this is that everything worked under Windows 64bit
before the changes were made to serialize the build of packages that
depend on each other.
That's untru
2010/7/2 Uwe Ligges
> Really, given my lack of time and your annoying posts to the lists
> containing misleading information, I probably should stop to care about your
> package at all. There are > 2000 other packages and some more important
> tasks to tackle. Consider the CRAN team would take so
Hi,
Is this sufficient?
if (.Machine$sizeof.pointer==4){
cat('32\n')
} else {
cat('64\n')
}
Or is it better to test something in R.version, say os?
I'd like to use this to specify appropriate linker arguments when
building the RMySQL windows package.
Jeff
--
http://biostat.mc.vanderbilt.e
Jeffrey Horner gmail.com> writes:
> Is this sufficient?
>
> if (.Machine$sizeof.pointer==4){
> cat('32\n')
> } else {
> cat('64\n')
> }
>
> Or is it better to test something in R.version, say os?
No, the above is perfect, as it also works on other platforms to distinguish
32-bit and 64-bi
R-Devel:
I am trying to get an attribute of the first argument in a call to a
function whose formal arguments consist of dots only and do something, e.g.,
call 'cbind', based on the attribute
f<- function(...) {get first attribute; maybe or maybe not call 'cbind'}
I thought of (ignoring "deparse.
Hi Daniel,
On 02.07.2010, at 23:26, Daniel Murphy wrote:
> I am trying to get an attribute of the first argument in a call to a
> function whose formal arguments consist of dots only and do something, e.g.,
> call 'cbind', based on the attribute
> f<- function(...) {get first attribute; maybe or m
In kmeans() in stats one gets an error message with the default
clustering algorithm if centers = 1. Its often useful to calculate
the sum of squares for 1 cluster, 2 clusters, etc. and this error
complicates things since one has to treat 1 cluster as a special case.
A second reason is that easil
On Fri, 2 Jul 2010, Jeffrey Horner wrote:
Hi,
Is this sufficient?
Yes, if you want to know in R code.
if (.Machine$sizeof.pointer==4){
cat('32\n')
} else {
cat('64\n')
}
Or is it better to test something in R.version, say os?
Not 'os' (the OS is the same), but 'arch' changes. Just as
12 matches
Mail list logo