search for: ttotal

Displaying 6 results from an estimated 6 matches for "ttotal".

Did you mean: total
2009 Jun 04
0
Small mystery : passing a "subset=" argument to lme|lm through "..."
...data=complete(data,i), ...)) object <- list(call = call, call1 = data$call, nmis = data$nmis, analyses = analyses) oldClass(object) <- c("mira", oldClass(object)) return(object) } > bar1<-foo(ttotal~nbpradio, data=Data1.Imp, random=~1|ctr) > class(bar1$analyses[[1]]) [1] "lme" # Fine : the "random=" argument *HAS BEEN* passed to lme() # through "..." ; therefore it's (usually) possible. # Further tests (not shown) show that results are "reasonable&quot...
2003 Nov 25
1
ogginfo: playlength display in milliseconds
...t;lastgranulepos / inf->vi.rate; minutes = (long)time / 60; seconds = (long)time - minutes*60; + milliseconds = (long)((time - minutes*60 - seconds)*1000); bitrate = inf->bytes*8 / time / 1000.0; #ifdef _WIN32 info(_("Vorbis stream %d:\n" "\tTotal data length: %I64d bytes\n" - "\tPlayback length: %ldm:%02lds\n" + "\tPlayback length: %ldm:%02ld.%03lds\n" "\tAverage bitrate: %f kbps\n"), - stream->num,inf->bytes, minutes, seconds, bitrate); + stream...
2007 Aug 20
1
Problem mit summaryBy: Group sums gives me "incorrectly" zero for one variable
Hi, first I want to thank all of you for the quick aid which is provided here on the list during all times. Thanks a lot for that! Then, I have a problem using summaryBy which most probably is a problem of wrong use by me or the like: I use this command: summaryBy(total+total.inf~gr, aE, FUN=sum) where aE is a > str(aE) 'data.frame': 127880 obs. of 16 variables: $ gr
2007 Aug 27
1
Column naming mystery
..."gr1" and "total_inflated.sum"are correct but the "total.sum" column consists of only zeros which is not correct. The same happens when I rename the "total_inflated" to "total.inflated" or "totalinflated" but not when I rename it to "ttotal_inflated". In the latter case I get the correct result also for the "total.sum" column. Could anyone explain the rules for the column naming to me? Thank you very much in advance! Werner Machen Sie Yahoo! zu Ihrer Startseite. Los geht's:
2016 May 12
1
[PATCH] New API: btrfs-filesystem-show (RHBZ#1164765)
...0.00GiB used 2.00GiB path /dev/sda + * [...] + * *** Some devices missing + */ + for (i = 1; lines[i] != NULL; ++i) { + if (lines[i][0] == 0) + continue; + if (STRPREFIX (lines[i], "Label: ")) + continue; + else if (STRPREFIX (lines[i], "\tTotal devices ")) + continue; + else if (STRPREFIX (lines[i], "\tdevid ")) { + const char *p = strstr (lines[i], " path "); + const char *end; + if (!p) + continue; + + p += strlen (" path "); + end = strchrnul (p, ' '); +...
2011 Jul 18
5
[PATCH v3 0/5] btrfs-progs: scrub interface
This is the next patch series for scrub userland tools. Change log v1->v2: - commands now reachable as "btrfs scrub ..." instead of "btrfs filesystem scrub ..." - ability to scrub a single device instead of a whole file system - superfluous command line options removed - resume is now a separate command ("scrub resume") instead of "scrub start -r" -