NAME
Catalyst::View::R - A Catalyst view for R
SYNOPSIS
In a controller:
sub main : Path {
my ( $self, $c ) = @_;
$c->log->info('ok');
$c->stash->{r} = 'iris.r';
$c->forward( $c->component('R') );
}
With the correspondig view:
data(iris)
plot(iris)
METHODS
process
The process is the method used by Catalyst.
SOURCE AVAILABILITY
This source is in Github:
git://github.com/eriam/Catalyst-View-R.git
AUTHOR
Eriam Schaffter, <eriam@cpan.org>
COPYRIGHT AND LICENSE
Copyright (c) 2012 Eriam Schaffter. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.