search for: yymmdd

Displaying 14 results from an estimated 14 matches for "yymmdd".

Did you mean: yyyymmdd
2007 Nov 17
2
Getting Annual (Conditional) Averages
Hello, I'm very new to R, and so my question is simple. I have data record with 80 years of daily temperatures in one long string. The dates are also recorded, in YYMMDD format. I'd like to learn an elegant simple way to pull out the annual averages. (Obviously, every 4th year has 366 days.) I know I can set up a formal loop to create annual records and then average. But R seems to have such neat methods, is there some better way to do this? Lucia...
2015 Feb 02
2
samba share is symlink, symlink gets updated, samba doesn't catch the change
I have a couple of samba shares that point to symlinks. Basically these are last night's copy of a bunch of data. The path changes every night (YYMMDD is in the path name), so I've just got one symlink that gets updated to the path with the latest date every night. I was using an old Samba on OpenSolaris for a long time and this process was working. Using 3.6.23 on RHEL and although the symlink is getting updated to the new path every night...
2007 Apr 09
1
Re: asterisk-users Digest, Vol 33, Issue 35
We i have settup it like this it giveme caller id agent id and date-time on gsm file but i want them to be in folder on every day basis datewise. exten => _1NXXNXXXXXX,2,Set(CALLFILENAME=${ACCOUNTCODE}-${EXTEN}-${TIMESTAMP}) exten => _1NXXNXXXXXX,3,Monitor(gsm,/rec/asterisk/apr07/${CALLFILENAME},mb) Any Idea ? Faisal > ------------------------------ > > Message: 16 >
2002 Feb 09
1
How to access objects outside an R function
Dear R-Users, I have a dataframe (''forexdata'') of daily returns from the foreign exchange market for three currencies - British Pound (bp), Canadian Dollar(cd), Deustche Mark (dm) vis-a-vis the US Dollar and the Date Of Trade(yymmdd). For some dates the returns are missing (recorded as zero) as there were no trades in that currency for that date. My task is to substitute the missing or zero values with the next non-zero value. To this end I created two lag variables: forexdata$counter <- rep(1:length(forexdata$DateOfTrad...
2010 Nov 09
1
date conversion and plot
Hi All, I have a date in the format of yymmdd (without any of the backslashes, eg. 100731). How do I convert this into a Rdate and plot it? I don't want the number of days from 1970's showing up as my date (Its the date I require). Thanks, Sachin p.s. sorry about the corporate notice I can't remove it. --- Please consider the env...
2005 Nov 25
3
Query: Filesystems
...or XFS). And the last question: is there some sort of filesystem which supports generating 'in-filesystem' snapshots (ie. some sort of copy-on-write block semantics applicable both to files and directories combined with both a root rw directory to access current files and a ro /snapshot/YYMMDD-HHMMSS hierarchy to access snapshots from past dates with the possibility of deleting them at will (ie. generate a snapshot every hour, after 24 hours leave only every 6th one, after 7 days leave only dailies, after a month leave only weeklies etc... - much too complicated, but it's easier...
2011 May 09
2
Using NULL to my data?
Dear R users, I am reading data from a file where there are some missing that are represented by -9999.00. I am using the command below. =====My original data =========== PARM = TMPC;T12X;T12N;DWPC;PALT;SKNT;DRCT;P24M;CLCL STN YYMMDD/HHMM TMPC T12X T12N DWPC PALT SKNT DRCT P24M CLCL 820420 110429/1200 22.50 -9999.00 22.40 22.20 -9999.00 0.00 0.00 84.00 4.00 820980 110429/1200 26.90 -9999.00 23.40 24.10 1010.2...
2004 Jul 21
2
where are sources diffs?
Hello all, I'd like to update my local src tree (from Wine 20040615), and I'd rather grab a diff instead of the full 10MB so tarball; the README in source.winehq.org refers to some 'Wine-yymmdd.diff.gz' but I can't find any of such. Did I overlook some infos, or are such diffs not available, and I'm supposed to use CVS? thanks -- paolo GPG/PGP id:0x21426690 kfp:EDFB 0103 A8D8 4180 8AB5 D59E 9771 0F28 2142 6690
2003 Sep 28
0
Problem with sas.get function in Hmisc library
..."), id = "ident") : unused argument(s) (sasout ...) And effetively, there seems to be no 'sasout' argument in the function call : "function (library, member, variables = character(0), ifs = character(0), format.library = library, id, dates. = c("sas", "yymmdd", "yearfrac", "yearfrac2"), keep.log = TRUE, log.file = "_temp_.log", macro = sas.get.macro, data.frame.out = existsFunction("data.frame"), clean.up = TRUE, quiet = FALSE, temp = tempfile("SaS"), formats = TRUE, recode = formats, special.mi...
2006 Jan 26
2
128-bit encryption message since update to 0.9.6
I had used WineTools to install IE6 under WINE 0.9.something (0.9.4, I think). It worked fine to connect to my employer's Citrix server and run Citrix apps that required 128-bit encryption to run SSL connections. Since updating WINE to 0.9.6 (via Apt-get, I run Debian), whenever I try to connect to the Citrix server, I get a message informing me that 128-bit encryption is required and I
2016 Apr 26
5
Firefox and Flash
Hello Andreas, On Tue, 26 Apr 2016 09:03:12 +0200 Andreas Benzler <andreas at benzlerweb.de> wrote: > Hello every one I installed the official > flash plugin from adobe > > About Plugins tells me: > > Datei: libflashplayer.so > Pfad: /usr/lib64/flash-plugin/libflashplayer.so > Version: 11.2.202.577 > Status: Aktiviert
2018 Mar 26
0
Interest in integrating a linux perf JITEventListener?
...+ /* perf currently doesn't have an interface for unloading */ > +} > + > +bool PerfJITEventListener::InitDebuggingDir() { > + const char *BaseDir; > + llvm::SmallString<128> TestDir; > + time_t Time; > + struct tm LocalTime; > + char TimeBuffer[sizeof("YYMMDD")]; > + > + time(&Time); > + localtime_r(&Time, &LocalTime); > + > + /* perf specific location */ > + BaseDir = getenv("JITDUMPDIR"); > + if (!BaseDir) > + BaseDir = getenv("HOME"); > + if (!BaseDir) > + BaseDir = "...
2016 Dec 29
1
Interest in integrating a linux perf JITEventListener?
Having something like this available in tree would definitely be useful. For simplicity, why don't we start with support for the second style? This is the long term useful one and would be a good starting point for getting the code in tree. Can you give a pointer to the patch so that I can assess the rough complexity? If it's simple enough, I'd be happy to help get it reviewed
2017 Feb 02
0
Interest in integrating a linux perf JITEventListener?
Hi, On 2016-12-29 13:17:50 -0800, Philip Reames wrote: > Having something like this available in tree would definitely be > useful. Cool. > For simplicity, why don't we start with support for the second style? This > is the long term useful one and would be a good starting point for getting > the code in tree. Works for me. > Can you give a pointer to the patch so that