similar to: Sending an alert / email when R finished?

Displaying 20 results from an estimated 8000 matches similar to: "Sending an alert / email when R finished?"

2009 Jul 31
1
Matrix Integral
Hi, Any help on this would be appreciated: I need to integrate where K is a 4x4 matrix, and SIGMA is a 4x4 matrix from say a to b, i.e. 0 to 5: integral MatrixExp(-K * s) %*% SIGMA %*% t(SIGMA) %*% MatrixExp(t(-K) s) ds t is tranpose , %*% : matrix mult , MatrixExp : matrix exponential I've use integrate before on univariate functions like f(x) = x^2 which is fine but when doing this on
2008 Mar 07
0
Sending notification when zpool replace has finished resilvering?
This might be a daft question, but is there any way to configure Solaris to notify us when a disk has finished resilvering? This message posted from opensolaris.org
2006 Mar 24
2
Undocumented features of 'browser' (and possible changes)
I often use browser() when debugging a function. After entering browser, I would find it very useful to be able to cut-and-paste a chunk of R code to the browser (or use ess-eval-region in Emacs). An inconvenience, however, is that both blank lines and comment lines will exit the browser. The man page for browser says nothing about exiting the browser via ENTER or via a line that begins with a
2007 Nov 15
3
How to make rsync faster?
I manage 250+ redhat linux boxes. The boxes are all setup the same way. On a daily basis, we sync the app directory which is about 30gb out to all hosts. The daily delta is actually less than 1gb, but since I can't be sure if any individual box was tempered during the day, I always do a full sync. On a monthly basis, we run with "--delete" to clean out the stale files on the hosts.
2013 Jul 24
0
Alert Email
This is how I do it in <on-connect>, just reverse it for <on-disconnect>, it works pretty well: --- #!/bin/bash # THEDATE=$(date +%F-%H_%M) SUBJECT="Stream $1 started" EMAIL="myemail at mydomain.com" rm /tmp/emailmessage.txt EMAILMESSAGE="/tmp/emailmessage.txt" echo "Stream $1 connected to us on $THEDATE." > $EMAILMESSAGE # send an email
2013 Aug 01
0
Alert Email
Has the script the executable bit set? El 02/08/2013 01:23, "Phil - w2lie" <w2lie at w2lie.net> escribi?: > Hi All, thanks for the replies so far.. > I will try to address as many of them as I can in a group reply: > > Xabier Oneca -- xOneca wrote: > Just to confirm, are you sure the scripts' path in config file is relative > to the chroot directory? >
2006 Dec 25
2
Problem to generate training data set and test data set
I have a full data set like this: aa bas aas bms ams bcu acu omega y 1 ALA 0 127.71 0 69.99 0 -0.2498560 79.91470 outward 2 PRO 0 68.55 0 55.44 0 -0.0949008 76.60380 outward 3 ALA 0 52.72 0 47.82 0 -0.0396550 52.19970 outward 4 PHE 0 22.62 0 31.21 0 0.1270330 169.52500 inward 5 SER 0 71.32 0 52.84 0 -0.1312380 7.47528 outward 6
2013 Aug 01
1
Alert Email
Sorry, I have re-read your first mail and you said it's mode is 755. Don't know, it should work. Can you post the strace here or is it too verbose? El 02/08/2013 01:28, "Xabier Oneca -- xOneca" <xoneca+icecast at gmail.com> escribi?: > Has the script the executable bit set? > El 02/08/2013 01:23, "Phil - w2lie" <w2lie at w2lie.net> escribi?: >
2013 Aug 01
0
Alert Email
Hello Phil, Just to confirm, are you sure the scripts' path in config file is relative to the chroot directory? When you chroot an executable, you are changing the root directory to the configured path, so you have to account for that in the config file. El 01/08/2013 23:05, "Phil - w2lie" <w2lie at w2lie.net> escribi?: > After all the discussion last week, I finally
2009 Oct 13
7
lapply() reccursively
Hi all, I was wondering whether it is possible to use the lapply() function to alter the value of the input, something in the spirit of : a1<-runif(100) a2<-function(i){ a1[i]<-a1[i-1]*a1[i];a1[i] } a3<-lapply(2:100,a2) Something akin to a for() loop, but using the lapply() infrastructure. I haven't been able to get rapply() to do this. The reason is that the "real"
2011 Feb 11
1
Real-time web traffic alert notifications (email or SMS) on the cheap?
I''m a big fan of New Relic. One of the services they provide is alerts when your traffic goes up unexpectedly above a predetermined level. Does anyone have a favorite, inexpensive "traffic alert" tool that can be used on a small site--a site that''s not yet big enough for monthly payments of $150 for New Relic Silver (or even the $36 price tag for New Relic Silver on
2006 Dec 10
4
sample "n" random positions from a matrix
Hi there, I have a binary matrix (dim 100x100) filled with values 0 and 1. I need select a record "n" positions of that matrix when values are 1. How can I do that? Thanks for all, Miltinho Brazil --------------------------------- [[alternative HTML version deleted]]
2013 Jul 24
5
Alert Email
anyone knows if is possible to create an email alert to notify me when a mount point is connecting and disconnecting? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/icecast/attachments/20130724/b45e9502/attachment.htm
2010 Jul 07
3
How do I test against a simple null that two regressions coefficients are equal?
Hi there, I run two regressions: y = a1 + b1 * x + e1 y = a2 + b2 * z + e2 I want to test against the null hypothesis: b1 = b2. How do I design the test? I think I can add two equations together and divide both sides by 2: y = 0.5*(a1+a2) + 0.5*b1 * x + 0.5*b2 * z + e3, where e3 = 0.5*(e1 + e2). or just y = a3 + 0.5*b1 * x + 0.5*b2 * z + e3 If I run this new regression, I can test against
2013 Jul 24
2
Alert Email
It looks like those are bash scripts so try something like be sure your mail binary path is correct it may be somewhere else other then /bin echo "/bin/mail -s connecting someone at somewhere.com" > /home/icecast/bin/source-start chmod 775 /home/icecast/bin/source-start you may have a chown permissions issue too if the user that runs icecast can't see the
2011 Dec 21
4
qqnorm & huge datasets
Hi, When qqnorm on a vector of length 10M+ I get a huge pdf file which cannot be loaded by acroread or evince. Any suggestions? (apart from sampling the data). Thanks. -- Sam Steingold (http://sds.podval.org/) on Ubuntu 11.10 (oneiric) X 11.0.11004000 http://mideasttruth.com http://honestreporting.com http://camera.org http://openvotingconsortium.org http://pmw.org.il
2019 Jun 07
2
[R] Open a file which name contains a tilde
> On Jun 6, 2019, at 2:04 PM, Richard O'Keefe <raoknz at gmail.com> wrote: > > How can expanding tildes anywhere but the beginning of a file name NOT be > considered a bug? > > I think that that IS what libreadline is doing if one allows a whitespace separated list of file names. As reported in R-help, https://www.mail-archive.com/r-help at
2011 Jan 24
2
Help with expression
I have a problem with expressions. I am trying to create a title where the parameter of interest is displayed as a Greek character. Which parameter is being considered is stored in a character variable. As an example, if I have param <- "alpha" and then do plot(0, 0, main = bquote(Parameter==.(param))) then in the title I get "Parameter = alpha", whereas I want the
2019 Jun 05
6
Open a file which name contains a tilde
Hi, As I can see via path.expand a filename which contains a tilde anywhere gets automatically crippled. +> path.expand("a ~ b") [1] "a /home/user b" +> path.expand("a ~ b ~") [1] "a /home/user b /home/user" I want to open a file regardless whether its name contains any character unless 0. The unix filesystem allow the creation of such files, it
2019 Jun 05
6
Open a file which name contains a tilde
Hi, As I can see via path.expand a filename which contains a tilde anywhere gets automatically crippled. +> path.expand("a ~ b") [1] "a /home/user b" +> path.expand("a ~ b ~") [1] "a /home/user b /home/user" I want to open a file regardless whether its name contains any character unless 0. The unix filesystem allow the creation of such files, it