search for: timedata

Displaying 11 results from an estimated 11 matches for "timedata".

Did you mean: timedate
2011 Aug 31
1
formatting a 6 million row data set; creating a censoring variable
...;, "3", "3", "3", "3", "4")), .Names = c("gender", "mygroup", "id"), class = "data.frame", row.names = c(NA, -20L)) # here is plyr solution with idata.frame library(plyr) imyData <- idata.frame(myData) timeData <- idata.frame(ddply(imyData, .(id,mygroup), summarize, mytime = length(mygroup))) makeCensor <- function(x) { myvec <- rep(0,length(x)) lastInd <- length(myvec) myvec[lastInd] = 1 myvec } plyrSolution <- ddply(timeData, "id", transform, censor = makeCensor(m...
2003 Jun 26
2
Plots using POSIX
Is there a reason that the bottom axis changes color when POSIX data is used in plot function? For example: > timedata <- c("2/3/2003","3/4/2003","5/4/2003") > timedata2 <- strptime(timedata,format="%m/%d/%Y") > numdata <- c(2,3,4) > plot(as.POSIXct(timedata2),numdata,col="red",type="o") As compared to: > numdata2 <- c(3,4,5) >...
2010 Mar 24
1
isdst warning when rounding a range of time data: fix or suppress?
Hi, I'm working with timeseries data. The values are every 5 seconds and each series can last up to 4-5 days. To generate the x-axis labels, I'm doing the following: ========================= # Variable for displaying hours on the x-axis rtime <<- as.POSIXct(round(range(timedata), "hours")) # Variable for displaying days on the x-axis stime <<- as.POSIXct(round(range(timedata), "days")) # Plot the hours on the x-axis axis.POSIXct(1, at=seq(rtime[1], rtime[2], by="hour"), format="%H", cex.axis=.6, lwd=0, lwd.ticks=1, hadj=0.2,...
2007 Mar 08
4
Introduction and patch
Hi, I'm one of the people working on the Rockbox project (http://www.rockbox.org) which is an open source alternative firmware for a range Digital Audio Players. Recently we integrated support for the Speex codec using libspeex and seems to work well. If you could add Rockbox to your list of software that supports Speex, that'd be great. So that's the introduction done. Now for
2012 Apr 17
2
[LLVMdev] Issue with GetElementPtrInst in Instruction Combining pass
...quot;, "without instruction combining" is:   %coupling = getelementptr inbounds %struct._FRAME_DATA* %2, i32 0, i32 5, !dbg !575   store i32 0, i32* %coupling, align 4, !dbg !575     And the code generated "with instruction combining" is: %coupling = getelementptr inbounds i16* %timeData, i32 1060, !dbg !575   %24 = bitcast i16* %coupling to i32*, !dbg !575   store i32 0, i32* %24, align 4, !dbg !575     The FRAME_DATA, is defined as: typedef struct _FRAME_DATA {   Word16 nScaleFactors;                    /*!< total number of scalefactors in frame */   FRAME_INFO frameInfo;     ...
2007 Mar 08
0
Introduction and patch
Hi Dan, Thanks for the patch, I'll apply it to svn. One question, why do you need this: +void kiss_fftri2(kiss_fftr_cfg cfg,const kiss_fft_scalar *freqdata,kiss_fft_scalar *timedata); + Cheers, Jean-Marc Dan Everton a ?crit : > Hi, > > I'm one of the people working on the Rockbox project > (http://www.rockbox.org) which is an open source alternative firmware > for a range Digital Audio Players. Recently we integrated support for > the Speex codec usi...
2012 Apr 17
2
[LLVMdev] Issue with GetElementPtrInst in Instruction Combining pass
...fset in FRAME_DATA i.e. the 6th element, i.e. coupling member variable. i16, i16, i16, [6 x i16], [5 x i16], i16, i16, [3 x i16], [5x i16], [2 x i16], [5 x i32], i32 ,.... 31 words = 124 bytes.(considering it is aligned to i32) 1024 + 31 = 1055 2. with instruction combining coupling is at: i16* %timeData, i32 1060 i.e. 1060  offset. Still the location references by "without instruction combining" is 5 less from with instruction combining. Earlier when I was using llvm2.9, instruction combining does not give me any problem.  And similar code is generated as with llvm 3.0 instruction com...
2009 Oct 06
2
ggplot equivalent of par(xaxt)
I am playing around learning ggplot and cannot see how to suppress the x or y axis values ( equivalent of xaxt in basic graphics) It must be obvious but I'm not seeing it. Problem ================================================================= timedata <- structure(list(month = structure(c(5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L), .Label = c("...
2012 Apr 18
0
[LLVMdev] Issue with GetElementPtrInst in Instruction Combining pass
...fset in FRAME_DATA i.e. the 6th element, i.e. coupling member variable. i16, i16, i16, [6 x i16], [5 x i16], i16, i16, [3 x i16], [5x i16], [2 x i16], [5 x i32], i32 ,.... 31 words = 124 bytes.(considering it is aligned to i32) 1024 + 31 = 1055 2. with instruction combining coupling is at: i16* %timeData, i32 1060 i.e. 1060  offset. Still the location references by "without instruction combining" is 5 less from with instruction combining. Earlier when I was using llvm2.9, instruction combining does not give me any problem.  And similar code is generated as with llvm 3.0 instruction com...
2012 Apr 17
0
[LLVMdev] Issue with GetElementPtrInst in Instruction Combining pass
Hi Pankaj, your best bet is to send the entire bitcode before and after instcombine runs. Ciao, Duncan.
2003 Jun 27
1
R-help Digest, Vol 4, Issue 27 ( -Reply)
...anox.com> Subject: [R] Plots using POSIX To: r-help at stat.math.ethz.ch Message-ID: <2F3262756375D411B0CC00B0D049775DFD61EC at westpark.tanox.net> Content-Type: text/plain Is there a reason that the bottom axis changes color when POSIX data is used in plot function? For example: > timedata <- c("2/3/2003","3/4/2003","5/4/2003") > timedata2 <- strptime(timedata,format="%m/%d/%Y") > numdata <- c(2,3,4) > plot(as.POSIXct(timedata2),numdata,col="red",type="o") As compared to: > numdata2 <- c(3,4,5) >...