Thread Leserechte von mit Perl/CGI erstellten Dateien
(12 answers)
Opened by gmafx at 2011-04-29 18:48
Kann dein R auch aus einer Pipe lesen?
Beispiel: Code (perl): (dl
)
1 2 3 4 5 6 # Befehle für R sind in @array @array = ( "Blah", "Blubb", "Blimp"); my $pipe; open ($pipe, "| R CMD BATCH -f -") or die "cant create Pipe $!"; print for @array; close($pipe) or die "cant create Pipe $!"; Zur Kommandozeilensyntax von R: http://cran.r-project.org/doc/manuals/R-intro.html... Last edited: 2011-04-29 19:17:32 +0200 (CEST) |