search for: daily

Displaying 20 results from an estimated 4646 matches for "daily".

2010 Feb 02
2
Subset and plot
Here is a runable program. When I plot Day and Wgt, it graphs all the data points. All I need is daily.sub1 plotted. I also need each "Tanks" to have its own col or pch. When I run it with the line with pch, it gives me nothing. rm(list=ls()) Trial<-rep(c(1,2),each=12) Tanks=rep(c("a3","a4","c4","h4"),each=3,2) Day=rep(c(1:12),2) Wgt=c(1:24) da...
2008 Apr 22
2
using rsync with scripts (cronjobs) and automated backups
Hello all, I am wondering if it would be possible to write a script or a cronjob in linux using Rsync to run an automated backup of a server, or serveral servers if possible. I am very new with writing scripts and such, so any help or suggestions with how to get started would be great!!! Thanks ahead of time for the help!!! ----- Computers are like air conditioners. They both dont work, if you
2003 Sep 27
1
Option --link-dest creates unexplained subdirectory
The following backup script works fine for test cases but for doing a backup of 750 MB, the directory daily.1 has a subdirectory daily.0, that is, there is daily.1/daily.0 daily.2/daily.1 daily.3/daily.2 The directory daily.0 has nothing strange, no unusual links at the top level neither hard or soft. Also, the original directory has not unusual links. All directories are in the same computer. R...
2011 May 23
1
weird problem - R is not finding the data for the factor level present in the data
Sorry for no code - but it's a more of a general question. I have read in a data frame ("|"-delimited, .txt). daily<-read.table(file="filename.txt",sep="|",header=T) One of the variables is a factor with 110 levels: >str(daily$dma_id) Factor w/ 110 levels "500","501","503",... 108 levels of this factor happen to be numbers "500", "501&quot...
2008 Nov 11
2
Manipulation in timeSeries object:how to use the function "applySeries" by daily?
Hi all I have some tick-by-tick data and I have calculated the intraday returns. I want to sum up the intraday squared returns to calculate the daily volatility(or daily variance). I know that the s-plus FinMerics has the function aggregateSeries function that can be apply to daily data: aggregateSeries(x, Fun, by="daily"), but the counterpart function in R:applySeries can not be apply to daily data. This function has the argument by=c...
2017 Jun 23
2
Simple control structure issue
I am having a hard time with 'next'. I come from the "sloppy" school that learned BASIC with Goto. Conceptually next seems pretty straightforward. I just can't get it to work correctly in my code. Here's a stripped down version: WhichRunNow<-"Daily" Cnums=c(0,1,"2b3") Cpers=c("Daily","Daily","Weekly") for (j in (1:length(Cnums))) { If (!identical(Cpers[j],WhichRunNow)){ next } print(j) } So, this should print the number "3", which it does. It prints 3 bec...
2007 Jan 17
1
rsnapshot
Hi I got rsnapshot working, but I am still unclear about a few things. Say I have intervals daily 7 weekly 4 monthly 12 so running "rsnapshot daily" for seven days will create files daily.0, daily.1, daily.2, daily3, daily.4, daily.5, daily.6 If at the end of the week I do "rsnapshot weekly", then daily.6 gets moved to weekly.0 The next time daily runs, 5 will move to 6,...
2009 Nov 21
4
crontab problem
Hi; I have the following in crontab -eu root: @daily /usr/local/bin/mysql-backup- daily.sh @weekly /usr/local/bin/mysql-backup-weekly.sh @monthly /usr/local/bin/mysql-backup-monthly.sh [root at 13gems globalsolutionsgroup.vi]# ls /usr/local/bin/mysql-* /usr/local/bin/mysql-daily.sh /usr/local/bin/mysql-monthly.sh /usr/local/bin/mysql-weekly.sh The...
2010 Apr 21
4
Converting daily data series to monthly series
Hi Users, I have daily series of data from 1962 - 2000, with the data for February 29th in leap years excluded, leaving 365 daily values for each year. I wish to convert the daily series to monthly series. How can I do this using the zoo package or any other package? Thanks ZABLONE OWITI GRADUATE STUDENT Nanjing...
2015 Mar 11
3
Tasks in /etc/cron.daily on CentOS 7?
Hi, I just configured SquidAnalyzer, a nifty little network statistics tool that I'm using mainly in school networks to monitor network usage. I want to run the '/usr/bin/squid-analyzer' script once a day. I took a peek in /etc/cron.daily, and the package already installed an /etc/cron.daily/0squidanalyzer script. I wanted to know at what time CentOS ran the cron.daily scripts, so I typed crontab -l, but there was only "no cronjobs defined for root". Here's how things look on a public Slackware64 14.0 server I admi...
2008 Apr 14
3
Merging daily and weekly data
Dear R-help group, I have a dataset with daily closing prices from a stock exchange (consecutive 5 trading days) from a firm trading a specific commodity. The date variable looks like: quote_date 20080411 With the format; yyyymmdd. Moreover, I have another data set with a (average) weekly price of the underlying commodity. The date variables...
2011 Oct 07
1
Safely restoring backups
...--ignore-existing which wrote any mails that were removed and didn't touch things that already existed[1]. With mdbox things have become more complicated, and I haven't found a way to restore mail that doesn't result in many message duplicates. My backup setup is simple, I'm doing daily rsync backups of user's mailstores, as well as weekly backups, so I end up having on my backup server daily.1, daily.2, daily.3, daily.4, weekly.1, weekly.2... each containing the entire contents of the user's mdbox. The different restore methods I've tried are: 1. I tried rsyncing th...
2011 Sep 15
2
cumVar and cumSkew
Hi there, I need to do the same thing as cumsum but with the variance and skewness. I have tried to do a loop for like this: var.value <- vector(mode = "numeric", length = length(daily)) for (i in (1:length(daily))) { var.value[i] <- var(daily[1:i]) } But because my dataset is so huge, I run out of memory..... Any ideas?!?! Much appreciate it! -- View this message in context: http://r.789695.n4.nabble.com/cumVar-and-cumSkew-tp3816899p3816899.ht...
2011 Sep 12
14
[Bug 8450] New: --link-dest seems not to work mounted NTFS file systems
...Platform: x86 OS/Version: Linux Status: NEW Severity: normal Priority: P5 Component: core AssignedTo: wayned at samba.org ReportedBy: toralf.foerster at gmx.de QAContact: rsync-qa at samba.org I use rsync to create daily/weekly/monthly backups to an external USB drive of my Gentoo Linux using this command line options : --archive --delete --delete-excluded --exclude-from=/exclude.list --link-dest=<old dest> --stats --verbose <src> <dest> This works like a charm for all files located on my ext3 L...
2010 May 10
1
Daily snapshots as replacement for incremental backups
Hello, I have a situation where a zfs file server holding lots of graphic files cannot be backed up daily with a full backup. My idea was initially to run a full backup on Sunday through the lto library on more dedicated tapes, then have an incremental backup run on daily tapes. Brainstorming on this, led me to the idea that I could actually stop thinking about incremental backups (that may always lead...
2012 Apr 26
1
looking for an add-in for daily data analysis
Hi all I am looking for an add-in. I am currently working on something and I use daily data of closing stock prices. As not all companies are traded daily (e.g. on monday, then on thursday etc) at the stock exchange, there is satistically a problem. There are some papers which explain the approach to handle infrequent trading of a stock or non synchronous data and beta estimation (Di...
2017 Jun 23
0
Simple control structure issue
...ving a hard time with 'next'. I come from the "sloppy" school that > learned BASIC with Goto. > > Conceptually next seems pretty straightforward. I just can't get it to > work correctly in my code. Here's a stripped down version: > > WhichRunNow<-"Daily" > Cnums=c(0,1,"2b3") > Cpers=c("Daily","Daily","Weekly") > > for (j in (1:length(Cnums))) { > If (!identical(Cpers[j],WhichRunNow)){ > next > } > print(j) > } > > So, this should print the...
2013 Aug 24
2
Potential incompatibilities between '--delete' and --copy-unsafe-symlinks' ???
...y rsnapshot (v 1.3.1, also Wheezy). Rsync source and destination are both on the same host (nothing remote at all in this entire scenario), though they happen to be on different partitions. As typical of rsnapshot, the destination directory for rsync is also hard-linked to other directories (past daily/etc snapshots), so a typical "new" rsnapshot invocation on my system (to create the more recent 'daily.0' snapshot) has the following two key steps: /bin/cp -al /backup/daily.0 /backup/daily.1 /usr/bin/rsync -avvv --delete --numeric-ids --relative --delete-excluded \ --c...
2009 Apr 09
2
rpmnew puzzles
I'm puzzled by such statements as diff /var/clamav/daily.cvd /var/clamav/daily.cvd.rpmnew Binary files /var/clamav/daily.cvd and /var/clamav/daily.cvd.rpmnew differ I thought the point of rpmnew files was so that we could check what has been changed? Anne -- New to KDE4? - get help from http://userbase.kde.org Just found a cool new feature? Add it t...
2008 Mar 28
3
Major rsync issue - overwriting files!!!
...low. Please HELP!!!! #!/bin/bash export PATH=$PATH:/bin:/usr/bin:/usr/local/bin ### Properties ### LOG=/Library/Logs/rsyncREM.log SRVR_IP=*.*.*.* BAK_DIR=`date +%A` SRC_DIR=/Volumes/REM BAK_PATH="/Volumes/REM Backup/RsyncBackups/REM" LINK_DEST="/Volumes/REM Backup/RsyncBackups/REM/Daily/PreviousBackups1" EXCLUDES=/Library/Scripts/rsync/exclude.txt ### rsync options ### OPTS="-Eapztc --links --ignore-errors --exclude-from=$EXCLUDES --delete-excluded --link-dest=$LINK_DEST" ### Sanity Check ### echo >> $LOG echo "*******" >> $LOG echo `date`...