Displaying 1 result from an estimated 1 matches for "overviewint".
Did you mean:
overviewing
2007 Apr 04
0
R and bash script problem
...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 < test.R
./overviewInter.sh
...
> library(scatterplot3d)
Error in library(scatterplot3d) : there is no package
called 'scatterplot3d'
Execution halted
More info on my setup:
Linux Fedora Core 4
AMD64 dual core
R version 2.4.1 (2006-12-18)
GNU bash, versi...