Displaying 8 results from an estimated 8 matches for "fdate".
Did you mean:
date
2002 Sep 13
4
logging on client side on NT
Hi,
I would like to log whatever happens with rsync on client side when it runs
with Cygwin on NT4.
First, I just did a redirect of the screen output to a log-file:
rsync -rtv --delete --modify-window=2 --stats /cygdrive/g/users/bco/test/
bee2bs01::d/test/ >>c:\rsync\log\%FDATE%.log
The problem with this method is that it does not redirect whatever Rsync
reports as errors; because they are showed on the screen. This is a shame,
because that's the info that interests us.
I've fiddled around quite a bit with the "--log-format=" option, but I
don't g...
2002 Dec 04
0
Continuous X Display problems on AIX
...script: setdisp.ksh
#
# purpose: to set the display variable on login
#
#############################################################
#
# Check if su, see if /tmp/ldisp for same date,time
#
DFILE=/tmp/ldisp
if [ ${DISPLAY:-0} = "0" ] ; then
cdate=`date +"%h%d%H:%M"`
fdate=`ls -l $DFILE|awk '{print $6$7$8}'`
if [ $cdate = $fdate ] ; then
xauth add `cat $DFILE`
export DISPLAY=`cat $DFILE | awk '{print $1}'`
echo "" > $DFILE
fi
fi
3) Contents of generic_alias
alias su="xauth list | sed -n '1,1 p'...
2007 Jun 22
1
Imputing missing values in time series
Folks,
This must be a rather common problem with real life time series data
but I don't see anything in the archive about how to deal with it. I
have a time series of natural gas prices by flow date. Since gas is not
traded on weekends and holidays, I have a lot of missing values,
FDate Price
11/1/2006 6.28
11/2/2006 6.58
11/3/2006 6.586
11/4/2006 6.716
11/5/2006 NA
11/6/2006 NA
11/7/2006 6.262
11/8/2006 6.27
11/9/2006 6.696
11/10/2006 6.729
11/11/2006 6.487
11/12/2006 NA
11/13/2006 NA
11/14/2006 6.725
11/15/2006 6.844
11/16/2006 6.907
What I would like to do is to fill the NAs...
2002 Dec 04
1
AIX - X displays forwarding problem with su
...script: setdisp.ksh
#
# purpose: to set the display variable on login
#
#############################################################
#
# Check if su, see if /tmp/ldisp for same date,time
#
DFILE=/tmp/ldisp
if [ ${DISPLAY:-0} = "0" ] ; then
cdate=`date +"%h%d%H:%M"`
fdate=`ls -l $DFILE|awk '{print $6$7$8}'`
if [ $cdate = $fdate ] ; then
xauth add `cat $DFILE`
export DISPLAY=`cat $DFILE | awk '{print $1}'`
echo "" > $DFILE
fi
fi
3) Contents of generic_alias
alias su="xauth list | sed -n '1,1 p'...
2010 Oct 27
3
ggplot - unwanted sorted X values
Hi,
I have this script:
dat <- data.frame(X = halistat$Date,Y1 = halistat$avg,Y2 = halistat$stdev)
ggplot(data = dat, aes(x = X, y = Y1, ymin = Y1 - Y2, ymax = Y1 + Y2)) +
geom_point() + # points at the means
geom_line() + # if you want lines between pints
geom_errorbar() # error bars, Y1 - Y2 and Y1 + Y2
halistat$Date values:
29/1/10
21/2/10
30/3/10
30/4/10
30/5/10
In the resulted
2010 Jun 06
1
R CMD in 2.11.1 error
...a gzip file in the format of write.table
function(ds, outdir, outpfx, datepfx, sep='\t', quote=TRUE, row.names=FALSE, col.names=TRUE, na='NA', append=FALSE) {
if (F) {
ds = ds.price;
outdir = pathPrice;
outpfx = paste(pfx.price,'_',sep='');
datepfx = fdate;
sep = '\t';
quote = TRUE;
row.names = FALSE;
col.names = TRUE;
na = 'NULL';
append = FALSE;
}
file.out = paste(outdir, '\\', outpfx, datepfx, '.gz', sep='');
file.tmp = paste(outdir, '\\', outpfx, datepfx, '.txt...
2012 Mar 05
1
index instead of loop?
Hello,
Does anyone know of a way I can speed this up? Basically I'm attempting to
get the data item on the same row as the report date for each report date
available. In reality, I have over 11k of columns, not just A, B, C, D and
I have to do that over 100 times. My solution is slow, but it works. The
loop is slow because of merge.
# create sample data
z.dates =
2007 Jun 24
2
matlab/gauss code in R
...must be a rather common problem with real life time series data
> but I don't see anything in the archive about how to deal with it. I
> have a time series of natural gas prices by flow date. Since gas is not
> traded on weekends and holidays, I have a lot of missing values,
>
> FDate Price
> 11/1/2006 6.28
> 11/2/2006 6.58
> 11/3/2006 6.586
> 11/4/2006 6.716
> 11/5/2006 NA
> 11/6/2006 NA
> 11/7/2006 6.262
> 11/8/2006 6.27
> 11/9/2006 6.696
> 11/10/2006 6.729
> 11/11/2006 6.487
>...