Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/postgres-plr/plr
PL/R - R Procedural Language for PostgreSQL
https://github.com/postgres-plr/plr
Last synced: 18 days 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 (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-08-05T13:06:23.000Z (3 months ago)
- Last Synced: 2024-08-05T20:08:48.623Z (3 months ago)
- Language: C
- Homepage:
- Size: 1.04 MB
- Stars: 120
- Watchers: 13
- Forks: 26
- Open Issues: 6
-
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)
[![GitHub license](https://img.shields.io/github/license/postgres-plr/plr.svg?cacheSeconds=2592000)](https://github.com/postgres-plr/plr/blob/master/LICENSE)
[![AppVeyor build status](https://ci.appveyor.com/api/projects/status/github/postgres-plr/plr?svg=true)](https://ci.appveyor.com/project/davecramer/plr-daun5 "Get your fresh Windows build here!")
[![Travis build Status](https://travis-ci.org/postgres-plr/plr.png)](https://travis-ci.org/postgres-plr/plr)
[![Code coverage](https://img.shields.io/codecov/c/github/postgres-plr/plr.svg?logo=codecov&cacheSeconds=2592000)](https://codecov.io/github/postgres-plr/plr)
[![Chat on Slack](https://img.shields.io/badge/Slack-chat-orange.svg?logo=slack&cacheSeconds=2592000)](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