https://github.com/postgres-plr/plr
PL/R - R Procedural Language for PostgreSQL
https://github.com/postgres-plr/plr
Last synced: about 1 month ago
JSON representation
PL/R - R Procedural Language for PostgreSQL
- Host: GitHub
- URL: https://github.com/postgres-plr/plr
- Owner: postgres-plr
- License: gpl-2.0
- Fork: true (jconway/plr)
- Created: 2016-03-12T21:17:26.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-10-10T21:20:51.000Z (6 months ago)
- Last Synced: 2024-10-26T23:10:38.156Z (6 months ago)
- Language: C
- Homepage:
- Size: 1.08 MB
- Stars: 122
- Watchers: 13
- Forks: 27
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - postgres-plr/plr - PL/R - R Procedural Language for PostgreSQL (C)
README
### PL/R - PostgreSQL support for R as a procedural language (PL)
[](https://github.com/postgres-plr/plr/blob/master/LICENSE)
[](https://ci.appveyor.com/project/davecramer/plr-daun5 "Get your fresh Windows build here!")
[](https://travis-ci.org/postgres-plr/plr)
[](https://codecov.io/github/postgres-plr/plr)
[](https://postgresteam.slack.com/messages/CJQUZ1475/ "Join the conversation!")Copyright (c) 2003 by Joseph E. Conway ALL RIGHTS RESERVED
Joe Conway
Based on pltcl by Jan Wieck
and inspired by REmbeddedPostgres by
Duncan Temple Lang
http://www.omegahat.org/RSPostgres/### License
- GPL V2 see [LICENSE](LICENSE) for details### Changes
- See [changelog](changelog.md) for release notes for latest docs#### Installation:
- See [installation](userguide.md#installation) for the most up-to-date instructions.#### Documentation:
- See [userguide](userguide.md) for complete documentation.### Notes:
- R headers are required. Download and install R prior to building PL/R.
- R must have been built with the ```--enable-R-shlib``` option when it was
configured, in order for the libR shared object library to be available.
- R_HOME must be defined in the environment of the user under which
PostgreSQL is started, before the postmaster is started. Otherwise
PL/R will refuse to load.-- Joe Conway