Displaying 20 results from an estimated 489 matches for "earliest".
2011 May 09
2
Round down to earliest hour or half hour
I have times and would like to round down to the earliest 30 minute
increment. For instance, a time of
2011-04-28 09:02:00
(the as.numeric value = 1303999320)
I would like it to be rounded down to:
2011-04-28 09:00:00
(the as.numeric value = 1303999200)
Any ideas of how to do this?
-----
In theory, practice and theory are the same. In practice, they ar...
2004 Mar 30
2
earliest use of rsync?
Dear Folks,
Is there a documented case of earliest use of rsync over internet? I
presume rsync was used almost as soon as internet was invented as a file
transfer and bandwidth efficient backup solution. If anyone has any
information, please respond.
--
Raghu Kulkarni
2009 Jun 10
1
by and by: using two indices in by() or tapply()
...ot;2009-05-15", "2009-05-28",
"2009-06-05", "2009-05-28", "2009-05-12", "2009-05-28",
"2009-05-07", "2009-05-20")
surveyor=rep(LETTERS[1:4],5)
data=data.frame(surveyor, submitdate,starttime)
I can generate a list of the earliest submission per day:
tapply(starttime,submitdate,min)
or of the earliest submission per surveyor:
tapply(starttime,surveyor,min)
or of the number of submissions per surveyor day:
table(submitdate,surveyor)
But what I want is the time of the earliest submission per surveyor per day
(and NA'...
2007 Jan 15
2
Backgroundrb keeps spawning processes
...es/20070115150803/vendor/plugins/backgroundrb/server/lib/backgroundrb/middleman.rb:355>,
trigger=#<BackgrounDRb::CronTrigger:0x28a2440 @min=[0, 10, 20, 30, 40,
50], @month=1..12, @hour=0..23, @year=nil, @day=1..31, @cron_expr="0
0,10,20,30,40,50 * * * * *", @sec=[0], @wday=0..6>, earliest=Mon Jan
15 18:50:00 +0300 2007, last=Mon Jan 15 18:50:00 +0300 2007>
20070115-18:50:00 (6171) Starting worker: session_cleaner_worker
ceb1eb03562acb8cb9c866320084383d
(session_cleaner_worker_ceb1eb03562acb8cb9c866320084383d) ()
20070115-19:00:00 (6171) Schedule triggered: #<struct
#<Class:...
2007 Mar 14
2
Earliest dial tone, after boot up.
New system install.
At what point, in bootup, should I be able to get a dial tone on the phone ports on a tdm400p? There are two fxo and two fxs ports. I know which to plug into <g>.
At boot up, as soon as wctdm is loaded, all the ports "go green, yet I do not get a dial tone on the phone ports. I thought as long as zapata.conf is correct, the board should be
2008 Feb 19
4
non-decreasing granulepos
...ssion of Kate's
granulepos ...
Here is what some documents have to say:
* Neither RFC3533 or http://www.xiph.org/ogg/doc/framing.html clarify this.
* The seeking algorithm suggested in the (troublesome) email quoted at
http://wiki.xiph.org/index.php/GranulePosAndSeeking is "find the
earliest page with a granulepos less than but closest to 'x'" should
be able to handle equal granulepos (if the earliest of a sequence of
pages with equal granulepos is taken to be the first of those in the
stream).
* The draft mapping for Ogg Dirac uses successive equal granulepos,
as the p...
2012 Nov 28
2
output data by date?
Dear Helpers,
I have a dataset X, with no missing values, everything is in order, R reads
it correctly, and I have already done some statistical analyses on the
dataset. The data are in order by date (six sampling dates in one year,
earliest to latest) and I now want to generate boxplots for each parameter
for each date.
However, R outputs the boxplots in some order that I do not understand (eg.
10.5.2011, 11.21.2011, 4.5.2011, 5.17.2011, 6.27.2011, 8.16.2011) instead
of chronologically as the data are in the dataframe.
I tried refor...
2005 Jun 14
3
Manipulating dates
Hello,
Given a vector of characters, or factors, denoting the date in
the following way: 28/03/2000, is there a method of
1) Computing the earliest of these dates;
2) Using this as a base, then converting all the other dates into merely
the number of days after this minimum date
Many thanks
Richard Hillary
2003 Jun 12
3
defaults in R: packages, .Rhistory
..._
platform i386-pc-mingw32
arch i386
os mingw32
system i386, mingw32
status
major 1
minor 7.0
year 2003
month 04
day 16
language R
A separate question also related to defaults:
Is there a way to get R to refrain from truncating the .Rhistory file
(removing the earliest saved commands), so that .Rhistory might serve
as a permanent record of every command issued?
Thanks for any info
Jake
2001 May 24
1
tframe question - latest.start
I'm having some trouble figuring out latest.start in
the tframe package. The results seem a bit cloudy.
Sample session:
> library(ts)
> library(tframe)
Loading required package: syskern
> t1<-ts(c(1,2,3,4,5),start=1)
> t2<-ts(c(1,2,3,4,5),start=2)
> earliest.start(tbind(t1,t2))
[1] 1 1
> earliest.start(tbind(t2,t1))
[1] 1 1
> latest.start(tbind(t2,t1))
[1] 1 1
> latest.start(tbind(t2,t1))
[1] 1 1
Same results if the series are tframed. Any ideas, comments?
Cheers,
Jason
Version:
platform = i586-pc-linux-gnu
arch = i586
os = linux-gnu
s...
2010 Apr 08
0
selected observations based several variables
..., but also
need to consider the values of "prior". The rough ideas are as follows.
# Check whether there are observations which have same x and y values,e.g.1
and 3. If same, their date difference need to be checked further. If their
date difference is <=8days, we only need to keep the earliest observarion;
#During this selection, variable of "prior" is also needed to be
considered. For "prior", the priority is C>A>N. For the same several
observations, if the earliest observation has a value of "N" and other later
observations have "A" or &quo...
2007 Jun 20
1
Date and selection
Dear R experts,
Suppose I have a data.frame recording the date and test results of
some subjects like this:
Name Date results
John 01/01/1991 2
John 02/01/1991 3
John 09/0101991 4
Micheal 02/01/1991 4
Micheal 04/01/1991 5
....
How to select the earliest (or latest) test result from all subjects?
Thank you.
Regards,
CH
--
"The scientists of today think deeply instead of clearly. One must be
sane to think clearly, but one can think deeply and be quite insane."
Nikola Tesla
http://www.macgrass.com
2007 Jul 04
2
[LLVMdev] SVN Repository Layout.
...n IRC discussion last evening and worked through some of the issues
and confusion. As a result, I've prepared a web page that contains the
proposals and decisions we made. Hopefully this will reduce the
confusion surrounding this topic.
Please read this: http://llvm.org/SVNLayout.html at your earliest
convenience. If there is any confusion remaining, please let me know and
I'll update this page (or you can do it yourself).
Thanks,
Reid.
2019 May 09
2
RHEL 8 released
On May 9, 2019, at 9:38 AM, Johnny Hughes <johnny at centos.org> wrote:
>
> As an initial goal, we would love to have a release in a month ..
That?s about the average time for 7.x releases, which I assume are far less work to get out than a point-zero.
Is this goal realistic?
I?d consider any ship date before about September to be ?success.?
2007 Oct 28
5
v1.0.6 released
http://dovecot.org/releases/1.0/dovecot-1.0.6.tar.gz
http://dovecot.org/releases/1.0/dovecot-1.0.6.tar.gz.sig
* IDLE: Interval between mailbox change notifies is now 1 second,
because some clients keep a long-running IDLE connection and use
other connections to actually read the mails.
* SORT: If Date: header is missing or broken, fallback to using
INTERNALDATE (as the SORT draft
2007 May 31
0
background worker just stops running after some time
...triggered: #<struct #<Class:0x834cc74>
job=#<Proc:0x0847d238@/usr/local/www/mysite/vendor/plugins/backgroundrb/server/lib/backgroundrb/middleman.rb:336>,
trigger=#<BackgrounDRb::Trigger:0x8d669f8 @start_time=Thu May 31 10:47:44
-0700 2007, @repeat_interval=3600, @end_time=nil>, earliest=Thu May 31
12:47:44 -0700 2007, last=Thu May 31 12:47:44 -0700 2007>
20070531-13:47:44 (678) Schedule triggered: #<struct #<Class:0x834cc74>
job=#<Proc:0x0847d238@/usr/local/www/mysite/vendor/plugins/backgroundrb/server/lib/backgroundrb/middleman.rb:336>,
trigger=#<BackgrounDRb...
2007 Oct 28
5
v1.0.6 released
http://dovecot.org/releases/1.0/dovecot-1.0.6.tar.gz
http://dovecot.org/releases/1.0/dovecot-1.0.6.tar.gz.sig
* IDLE: Interval between mailbox change notifies is now 1 second,
because some clients keep a long-running IDLE connection and use
other connections to actually read the mails.
* SORT: If Date: header is missing or broken, fallback to using
INTERNALDATE (as the SORT draft
2005 Sep 16
2
help required on read.table
...tion. i issued the
statement as
> a <- read.table("abnew.txt", header=TRUE)
> a
X.??S
1 NA
2 2
3 2
4 NA
5 2
6 2
7 NA
8 2
9 2
10 NA
the o/p looks like as copied above. can some one help me on correct
data reading. your earliest response will help me a lot.
thanks and regards
snvk
2006 Mar 14
3
Adaptec AIC9410
Can anyone tell me if/when the Adaptec AIC9410 SAS/SATA controller
will be supported?
Michael Grant
2007 Feb 14
2
[PXELINUX]A PXE booting question, please
...t found error, and I was given the options to choose the
correct network card driver to use.
Now I am wondering sending out this DHCP request is done by PXELINUX or
the linux kernel, or something else. Can we just use the TCP/IP ability
of the PXE to get the network access, which is done at the earliest
stage like IP request and TFTP transfer.
The PXELINUX configuration file was the following:
default linux
prompt 1
timeout 500
display boot.msg
label localboot
LOCALBOOT 0
label linux
kernel vmlinuz-7.3
append initrd=initrd-7.3.img ramdisk_size=10000
ks=http://192.168.160.6/data2/...