When I need to visualize some data, I often realize that it is easier to code in R than in perl. And if it is not, then I would have the problem that my graphs don't have a common look if I'd use a perl chart module. So I use R for all my charts:
use R;
use RReferences;
&R::initR("--silent");
&R::library("RSPerl");
&R::eval("par(mfrow=c(1,2))");
@x = &R::call("rnorm", 10);
# We need to make the @x a reference or the contents
# will be treated as individual arguments.
#&R::call("plot", \@x);
#&R::callWithNames("plot", {'x' , \@x, 'ylab','data'});
&R::callWithNames("plot", {'x' => \@x, 'ylab' => 'data'});
@x = &R::call("seq", 1,10);
&R::call("plot", \@x);
print "Sleeping for 5 seconds and then quitting\n";
sleep(5);
(taken from the RSPerl examples)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.