私は、以下のものを使用してPHPからRスクリプトを実行しようとしている:RとPHPの統合
echo "<form action='poorman.php' method='get'>";
echo "Number values to generate: <input type='text' name='N' />";
echo "<input type='submit' />";
echo "</form>";
if(isset($_GET['N']))
{
$N = $_GET['N'];
// execute R script from shell
// this will save a plot at temp.png to the filesystem
exec("Rscript my_rscript.r $N");
// return image tag
$nocache = rand();
echo("<img src='temp.png?$nocache' />");
}
と私のRスクリプトは以下の通りです:
args <- commandArgs(TRUE)
N <- args[1]
x <- rnorm(N,0,1)
png(filename="temp.png", width=500, height=500)
hist(x, col="lightblue")
dev.off()
そのは一時を生成しません。 png
rスクリプトは問題ありませんが、PHPからこのスクリプトを実行できないようです。どんな助けでも大変感謝していますか?
メモ私はubuntuを使用しています。 ありがとう、
私はあなたがRスクリプトを直接実行したことをテストし、その場合に望ましいpngを生成することを確認していると仮定していますか? – joran
はい、うまく動作します – jkjk
可能な複製:http://stackoverflow.com/questions/4818641/using-r-through-php – aL3xa