untitled has asked for the wisdom of the Perl Monks concerning the following question:
Can I create files after startR? Should I do this in another way?#!/usr/bin/perl use warnings; use strict; use Statistics::R; my $R = Statistics::R->new(); open FH, ">", "test1.txt" or die $!; $R->startR; open FH, ">", "test2.txt" or die $!; $R->stopR; open FH, ">", "test3.txt" or die $!;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: in Statistics::R, startR breaks open
by syphilis (Archbishop) on Aug 19, 2009 at 01:03 UTC | |
by untitled (Initiate) on Aug 19, 2009 at 15:04 UTC | |
by untitled (Initiate) on Aug 19, 2009 at 18:36 UTC |