search for: splitdateindex

Displaying 1 result from an estimated 1 matches for "splitdateindex".

2010 Apr 19
2
Huge data sets and RAM problems
...me: applicLog.dat <- read.delim("file.txt") #Process the syscreated column (Date time --> Date + time) copyDate <- applicLog.dat[["?..syscreated"]] copyDate <- as.character(copyDate) splitDate <- strsplit(copyDate, " ") splitDate <- unlist(splitDate) splitDateIndex <- c(1:length(splitDate)) sysCreatedDate <- splitDate[splitDateIndex %% 2 == 1] sysCreatedTime <- splitDate[splitDateIndex %% 2 == 0] sysCreatedDate <- strptime(sysCreatedDate, format="%Y-%m-%d") op <- options(digits.secs = 3) sysCreatedTime <- strptime(sysCreatedTime, f...