https://github.com/jacoby/plotmaker
Perl Module to handle the creation and running of R plots
https://github.com/jacoby/plotmaker
Last synced: 2 months ago
JSON representation
Perl Module to handle the creation and running of R plots
- Host: GitHub
- URL: https://github.com/jacoby/plotmaker
- Owner: jacoby
- License: other
- Created: 2012-04-06T14:36:50.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2012-04-06T14:42:45.000Z (about 14 years ago)
- Last Synced: 2025-01-19T17:37:33.977Z (over 1 year ago)
- Language: Perl
- Homepage:
- Size: 85.9 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
I have been unsatisfied with previous means to run R from Perl,
and this is the beginnings of my attempt to rectify the issue.
Generally, you develop a template for your R, designate a temp
directory and file name for R code, and a hashref full of the
data your R code will use. This module takes the data and template,
writes the R, then runs it.
Because of how R works, we'd have to parse the .Rout file to see
if the R program worked. I don't currently do that. It is a place
where this module could do that. It probably should do that. It
does not currently do that. I blame myself.
I would be more than willing to rectify this.