Displaying 20 results from an estimated 30 matches for "mdate".
Did you mean:
date
2006 May 20
1
merge problem... extra lines appear in the presence of NAs
...oing something wrong or is this a bug?
I'm doing a merge of two dataframes and getting extra rows in the
resulting dataframe - the dataframes being merged might have NAs...
count <- 10
nacount <- 3
a1 <- as.data.frame(as.Date("2005-06-01")+0:(count-1))
names(a1) <- "mdate"
a1$value <- runif(count)
a1[floor(runif(nacount)*count),]$value <- NA
a2 <- as.data.frame(as.Date("2005-06-01")+0:(count-1))
names(a2) <- "mdate"
a2$value2 <- runif(count)
#a2[floor(runif(nacount)*count),]$value2 <- NA
> a1
mdate value
1...
2013 Apr 11
4
Understanding contents of packages
...ut installing/"require"ing the package.
This started with some success until I encountered one problem that I could not overcome.
When I executed the function write.xport, I received the following error message:
Error in .C("fill_file_header", cDate = xport.dateFMT(cDate), mDate = xport.dateFMT(mDate), :
C symbol name "fill_file_header" not in load table
This appears to be coming from the following line of code in write.xport:
out(xport.file.header( cDate = cDate, sasVer = sasVer, osType = osType))
The problem appears to be in
xport.file.header
for...
2013 Dec 09
1
Plot mortality data and show trend
I have a mortality data over many years and I wish to plot the data and also add some smoother to clearly highlight the trend. How could I do that in R with base graphics or ggplot? I have the following sample data: require(lubridate) mdate<-seq(ymd('2000-01-01'),ymd('2010-12-31'), by = '1 day') death<- rnorm(4018, 80, 45) df<-cbind(mdate,death)
[[alternative HTML version deleted]]
2014 Jun 13
2
no x label using axis.Date
...")*
The above section is used in the following plot:
par(mfrow=c(4,1))
par(mar=c(0.8,0,0,0))
par(oma=c(2,4.5,3,2))
plot(totaldays$totaldays,totaldays$y,type="n",ylim=c(0,Dmax),xaxt="n")
points(D$date,D$TSP,col=Dcol,type="p",pch=16,lwd=2,xaxt="n")
text(mdate,Dmax-20,labels="DM1'",cex=1)
legend("topright",pch=16,cex=0.8,col=colLegend,
legend=ALegend)
abline(h=Target,col="red",lwd=2)
plot(totaldays$totaldays,totaldays$y,type="n",ylim=c(0,Bmax),xaxt="n")
points(B$date,B$TSP,col=Bcol,type="...
2006 May 22
1
win2k memory problem with merge()'ing repeatedly (long email)
...:
01/06/2005,1372
Though there are three files which have two values (files 3,32,33) and
these have lines which look like...
01/06/2005,1766,
or
15/05/2006,289,114
a1 <- read.csv("file1.csv",header=F)
etc...
a63 <- read.csv("file63.csv",header=F)
names(a1) <- c("mdate","file1.column.description")
atot <- merge(a1,a2,all=T)
followed by repeatedly doing...
atot <- merge(atot, a3,all=T)
atot <- merge(atot, a4,all=T)
etc...
I normally start R with --vanilla.
What appears to happen is that atot doubles in size each iteration and
just falls...
2006 May 31
1
Phrase Query vs AND Query? Why don't these find the same things?
...234-1234567890ab
Term List for record #1:
CDATE:1135755971 1 1
ETAG:DA39A3EE5E6B4B0D3255BFEF95601890AFD80709 1 1
LANG:en 1 1
LEN:0 1 1
LP:Mozilla Firefox 1 1
LP:backup 1 1
LP:c: 1 1
LP:program files 1 1
LP:res 1 1
LP:table-add-column-after-hover.gif 1 1
MBOX:12345678-1234-1234-1234-1234567890ab 1 1
MDATE:1135755971 1 1
MIME:application/octet-stream 1 1
NAME:table-add-column-after-hover.gif 1 1
TYPE:0 1 1
here is what my test program outputs with the AND QUERY
the numbers in the [] after the LP: prefixed terms are thier posting
postiions
found 1
DOCID:1
PPATH:/wfs/0/+/D/0+DM0wZ6y_mHubbNJjQXrgqW64s...
2008 Jun 08
20
how to parse a "dd/mm/yyyy" formatted date string???
Hi,
I''m stuck. How do you parse a "dd/mm/yyyy" formatted date string???
I get a date format error.
Thanks in advance
Greg
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to
2016 Nov 21
2
Re: [PATCH v2 4/5] v2v: ova: don't extract files from OVA if it's not needed
...of the places.
> + let rec loop lines =
> + match lines with
> + | [] -> raise Not_found
> + | line :: lines -> (
> + (* Lines have the form:
> + * block <offset>: <perms> <owner>/<group> <size> <mdate> <mtime> <file>
> + *)
> + let rex = Str.regexp "^block \\([0-9]+\\): \\([^ \\t]+\\) \\([^ \\t]+\\) +\\([^ \\t]+\\) \\([^ \\t]+\\) \\([^ \\t]+\\) \\(.+\\)$" in
Whoa how unreadable :/ The alternative would be using String.nsplit,
but it would play b...
2000 Apr 03
1
2.0.7pre3: smbclient issues
My systems: rh61, 2.2.14 + smbfs-nls.patch.
I refer to 2.0.7pre3 as 2.0.7
=== 1) "ls" of an empty dir
1a)
1.9.18 doing "ls" to an empty samba dir:
smb: \> ls
49550 blocks of size 16384. 33754 blocks available
1b)
2.0.7 doing "ls" to an empty samba dir:
smb: \> ls
ERRDOS - ERRbadfile (File not found.) listing \* <=======
2016 Nov 23
0
Re: [PATCH v2 4/5] v2v: ova: don't extract files from OVA if it's not needed
...let rec loop lines =
> > + match lines with
> > + | [] -> raise Not_found
> > + | line :: lines -> (
> > + (* Lines have the form:
> > + * block <offset>: <perms> <owner>/<group> <size> <mdate> <mtime> <file>
> > + *)
> > + let rex = Str.regexp "^block \\([0-9]+\\): \\([^ \\t]+\\) \\([^ \\t]+\\) +\\([^ \\t]+\\) \\([^ \\t]+\\) \\([^ \\t]+\\) \\(.+\\)$" in
>
> Whoa how unreadable :/ The alternative would be using String.nspli...
2008 Jan 25
7
vorbis-tools 1.2.0 Release Candidate
I bumped the version number of vorbis-tools and am preparing it for an
eventual release in a few days.
A changelog of what's new may be found at [1].
Meanwhile, what's in SVN is a "Release Candidate" to find out if
anything was broken since version 1.1.1. Report any (or lack of)
problems you may find, so we'll be able to put out a new version of
vorbis-tools.
-Ivo
[1]
2019 Jan 21
18
[PATCH xf86-video-nouveau 00/17] autotools configuration cleanups
Series of cleanups to autotools build config files to utilize the available
xorg-server macros, defaults and more closely match other modern Xorg drivers.
Notable improvements:
- gitignore fully covers potential build artifacts
- Simplify logic given stated minimum required version of xorg-server 1.8
- Remove use of deprecated, outdated or no longer required macros
- Utilize xorg macros where
2016 Nov 12
0
[PATCH v2 4/5] v2v: ova: don't extract files from OVA if it's not needed
...[ "tar"; "tRvf"; tar ]) in
+ let rec loop lines =
+ match lines with
+ | [] -> raise Not_found
+ | line :: lines -> (
+ (* Lines have the form:
+ * block <offset>: <perms> <owner>/<group> <size> <mdate> <mtime> <file>
+ *)
+ let rex = Str.regexp "^block \\([0-9]+\\): \\([^ \\t]+\\) \\([^ \\t]+\\) +\\([^ \\t]+\\) \\([^ \\t]+\\) \\([^ \\t]+\\) \\(.+\\)$" in
+ if Str.string_match rex line 0 then (
+ let offset = Str.matched_group 1 line...
2018 Apr 23
3
[PATCH 0/3] v2v: Miscellaneous refactoring and fixes.
Originally an attempt to fix:
https://bugzilla.redhat.com/show_bug.cgi?id=1570407
However this isn't a complete fix. The OVA supplied doesn't even
conform to VMware's own "specification" (I use the word loosely). The
OVF inside the OVA references the disk.vmdk file, but the OVA doesn't
contain that disk.vmdk file, only a snapshot called
disk.vmdk.000000000. Therefore
2003 Dec 01
0
No subject
...un 2001
11:32:37 -0500 (CDT)
Message-Id: <200106111632.LAA24402@romulus.bhi-net.com>
Received: by bhihdcimc01.bakerhughes.com with Internet Mail Service
(5.5.2653.19) id <LD8K977C>; Mon, 11 Jun 2001 11:28:31 -0500
From: "Hill, Victor" <Victor.Hill@BakerAtlas.Com>
To: mdate@austin.ibm.com
Cc: samba@lists.samba.org
Subject: Re: Win95/Win98 not listing files/folders unless a `.' (dot) is
i n the name
Date: Mon, 11 Jun 2001 11:16:20 -0500
MIME-Version: 1.0
X-Mailer: Internet Mail Service (5.5.2653.19)
Content-Type: text/plain; charset="iso-8859-1"
Sender:...
2016 Nov 12
9
[PATCH v2 0/5] Import directly from OVA tar archive if possible
This series is related to the problem of inefficient import of OVA
files. The needed enhancements of QEMU were merged into the codebase and
should be available in QEMU 2.8. From there we can use 'size' and
'offset' options in raw driver to tell QEMU to use only subset of a file
as an image.
The patch set is more or less complete. The only outstanding issue is
the missing detection
2018 Apr 25
9
[PATCH v2 0/9] v2v: -i ova: Handle OVAs containing snapshots.
https://bugzilla.redhat.com/show_bug.cgi?id=1570407
This turned into quite an in-depth refactoring of how we handle OVAs.
It also fixes a potential security issue.
Rich.
2016 Dec 18
0
[PATCH v4 6/6] v2v: ova: don't extract files from OVA if it's not needed
...uot;tar tRvf %s" (Filename.quote tar)) in
+ let rec loop lines =
+ match lines with
+ | [] -> raise Not_found
+ | line :: lines -> (
+ (* Lines have the form:
+ * block <offset>: <perms> <owner>/<group> <size> <mdate> <mtime> <file>
+ *)
+ let elems = String.nsplit ~noempty:true ~count:7 " " line in
+ if (List.length elems) = 8 && (List.hd elems) = "block" then (
+ let elems = Array.of_list elems in
+ let offset = elems...
2018 Oct 28
0
[PATCH nbdkit 4/4] Add floppy plugin.
...=
+ (ctime_tm.tm_year - 80) << 9 |
+ (ctime_tm.tm_mon + 1) << 5 |
+ ctime_tm.tm_mday;
+
+ localtime_r (&statbuf->st_mtime, &mtime_tm);
+ entry->mtime =
+ mtime_tm.tm_hour << 11 |
+ mtime_tm.tm_min << 5 |
+ (mtime_tm.tm_sec / 2);
+ entry->mdate =
+ (mtime_tm.tm_year - 80) << 9 |
+ (mtime_tm.tm_mon + 1) << 5 |
+ mtime_tm.tm_mday;
+
+ localtime_r (&statbuf->st_atime, &atime_tm);
+ entry->adate =
+ (atime_tm.tm_year - 80) << 9 |
+ (atime_tm.tm_mon + 1) << 5 |
+ atime_tm.tm_mday;
+}
+...
2017 Jan 30
0
[PATCH v6 3/3] v2v: ova: don't extract files from OVA if it's not needed
...uot;tar tRvf %s" (Filename.quote tar)) in
+ let rec loop lines =
+ match lines with
+ | [] -> raise Not_found
+ | line :: lines -> (
+ (* Lines have the form:
+ * block <offset>: <perms> <owner>/<group> <size> <mdate> <mtime> <file>
+ *)
+ let elems = String.nsplit ~keep_empty:false ~count:7 " " line in
+ if List.length elems = 8 && List.hd elems = "block" then (
+ let elems = Array.of_list elems in
+ let offset = elems...