Displaying 1 result from an estimated 1 matches for "3thtry_1".
2007 Apr 04
0
R and bash script problem
...e package scatterplot3d installed and
working.
I'm using bash as the command line interpretor.
When I open R interactively I can load
scatterplot3d without problem and use it.
When I create an R script it also works and execute
it interactively in bash it works
[xavier at coyote DIR.3thTry_1]$ cat test.R
library(scatterplot3d)
[xavier at coyote DIR.3thTry_1]$ R --no-save < test.R
...
> library(scatterplot3d)
>
When I create a bash script that do the same thing
it doesn't work anymore
[xavier at coyote DIR.3thTry_1]$ cat overviewInter.sh
#!/bin/bash
R --no-save < te...