Displaying 2 results from an estimated 2 matches for "sjackson".
Did you mean:
jackson
2013 Jul 10
0
how to adjust the x axis range based on y axis data
...plot for each TITLE (related to a variable/station combination).
#Create a plot for each Title. Save all plots as jpegs in folder named "SkeenaQfigs"
for(i in 1:nlevels(dt$TITLE)){
tmp.title <- subset(dt, TITLE == levels(dt$TITLE)[i])
#save plot to file
setwd("H:/R stuff/SJackson/SkeenaQfigs")
options(show.error.messages = FALSE)
result <- try(plot(tmp.title$YEAR, tmp.title$VALUE, xlab = "Year", ylab="", main = tmp.title$TITLE[1]))
if(class(result) == 'try-error')
{
print(paste("error", tmp.title$TITLE[1], sep=&quo...
2012 Jul 31
2
Bad exit code?
Hi all,
I''m running puppet agent as a onetime process. I would expect, if it can''t create the pid file, that it would exit non-zero. However, it seems to exit zero. Is there any way to change this? I''d like to know if it couldn''t run, and it seems that this is an error.
[root@db1r1 ~]# puppet agent --onetime --detailed-exitcodes
[root@db1r1 ~]# puppet