search for: r_output

Displaying 3 results from an estimated 3 matches for "r_output".

Did you mean: _output
2006 Jun 21
3
png() or jpeg() in a php script
Hello, I've got a problem with a PHP script, in which I call the system function (to call another processes). The call is : system("R --slave --vanilla < path/to/source/source.R"); if in this R file, I've got the lines: pdf(file="/path/to/file/file.pdf") commands dev.off() the pdf file is perfectly created but if I change the lines to:
2009 Jul 25
1
yaxp problem for more irregular time series in one plot
Good day, I'm trying to get more time series in one plot. As there are bigger differences in values of variables I need logaritmic y axis. The code I use is the following: nvz_3_data <- read.csv('/home/tomas/R_outputs/nvz_3.csv') date <- (nvz_3_data$date) NO3 <- (nvz_3_data$NO3) NH4 <- (nvz_3_data$NH4) date_p <- as.POSIXct(date, "CET") par(mfrow=c(2,1), ylog = TRUE, yaxp = c(0.01, 100, 3)) plot(date_p, NO3, log = "y", type = "l", col = "darkred", main = &q...
2011 Aug 23
1
Passing parameters
...rcpy.GetParameterAsText(0) # base working directory currentWS_RCMD = '"' + wd_base + '"' # add the string quotes indata = arcpy.GetParameterAsText(1) # polygon input file indata_RCMD = '"' + data_input + '"' # add the string quotes R_output = arcpy.GetParameterAsText(2) # polygon input file R_output_RCMD = '"' + data_input + '"' # add the string quotes ########## Get R Tool Directory and Tool Name ########## pyScript = SYS.argv[0] # Get the path for the Python Script toolDir = OS.path.dir...