Tagged Questions
The rscript tag has no wiki summary.
8
votes
6answers
2k views
Rscript: Determine path of the executing script
I have a script called foo.R that includes another script other.R, which is in the same directory:
#!/usr/bin/env Rscript
print("Hello")
source("other.R")
But I want R to find that other.R no ...
4
votes
3answers
68 views
stopping exit after rscript run
I have have a R script which queries a database, runs some analysis, plots a few charts based on the current system date.
I want to get this script to run daily at boot, I thought I could do this ...
4
votes
2answers
95 views
External graphical device for littler or Rscript
I really like littler is really great for scripting using R. But i don't how to use external graphics device a la gnuplot (for example using Octave).
I'm able to produce the desired graph but i have ...
2
votes
1answer
151 views
Rscript - get rid of “WARNING: ignoring environment value of R_HOME”
Rscript is very handy. But I'd like to specify output paths at runtime, e.g.: my.Rscript input > output.
message() is great for logging to STDERR, but Rscript seems to systematically output ...
1
vote
0answers
29 views
How to use Rscript?
I want to use Rscript in java.
ScriptEngineManager sem = new ScriptEngineManager();
ScriptEngine engine = sem.getEngineByExtension("R");
After this engine is null.
I guess R is not installed am I ...
1
vote
0answers
86 views
Rscript issue - using different version of R?
I'm trying to load a library in an Rscript, but it's giving me a strange error. I'm running the 2.12.1 version of the Rscript binary, yet it complains that my package was built under version 2.12.1. ...
1
vote
2answers
105 views
Is there a better way to hierarchically cluster in R?
I would like to do hierarchical clustering by row and then by column. I came up with this total hack of a solution:
#! /path/to/my/Rscript --vanilla
args <- commandArgs(TRUE)
mtxf.in <- args[1]
...
1
vote
6answers
2k views
Why my bash can't execute R script?
My script use an access to mysql to get command arguments to launch Rscript.
Its use is as follows : Rscript $RFILE $ARGUMENTS (RFILE corresponding to path to Rscript, and ARGUMENTS corresponding to ...
0
votes
0answers
31 views
Cannot call roxygenize function from Rscript batch file
I am writing a script that uses roxygen2 to automatically roxygenize my package. I'd like it to be executable so that it can be part of a larger script to prepare and install the package, but I cannot ...
0
votes
0answers
11 views
cleaning a data frame combining complex criteria
Iam having problems to generate a Rscript to clean my data. the biggest of them is that i did not worked out a way of subsetting using complex criteria.
I have a dataframe such like this:
A ...
0
votes
3answers
286 views
Rscript ggplot - ggsave problem
I am using the following code to draw a graph and print it to a PDF:
ggplot(agg_data_cl, aes( as.Date(date), avg_entries, color = classification ) ) +
geom_point()
ggsave(file = "output.pdf")
...
0
votes
1answer
96 views
Rscript and Incredibuild
I have a simple function f1(paramter) in a "functions.txt" file.
I write a batch file test.bat as follows
FOR /L %%G in (-100,1,100) do xgSubmit.exe /group=tt1Test /command Rscript.exe -e
...
0
votes
3answers
551 views
Rscript: Define path file as argument
I try this command :
Rscript "/Users/test/Scripts/arg_test.R" "path_in=/Users/test/GR/web-app/Rproject/Inputs/Rmerge/Description.csv" ...
-1
votes
2answers
72 views
Rscript on ubuntu
Where can I install Rscript from? I need to run an R script from a php file using exec. However I need to install Rscript first.
-2
votes
1answer
775 views
NA/NaN/Inf from rscript
what goes wrong?
$> priv/summary.r -i tests/current
Loading required package: reshape
Loading required package: plyr
Attaching package: 'reshape'
The following object(s) are masked from ...