{"id":13858269,"url":"https://github.com/bedatadriven/renjin","last_synced_at":"2025-07-13T23:32:00.918Z","repository":{"id":43478923,"uuid":"7364548","full_name":"bedatadriven/renjin","owner":"bedatadriven","description":"JVM-based interpreter for the R language for the statistical analysis.","archived":false,"fork":false,"pushed_at":"2023-09-26T19:39:30.000Z","size":43501,"stargazers_count":515,"open_issues_count":102,"forks_count":83,"subscribers_count":35,"default_branch":"master","last_synced_at":"2025-05-23T11:30:21.308Z","etag":null,"topics":["compiler","interpreter","java","language","r","renjin","statistics"],"latest_commit_sha":null,"homepage":"https://www.renjin.org","language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bedatadriven.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2012-12-29T08:38:37.000Z","updated_at":"2024-12-25T12:22:22.000Z","dependencies_parsed_at":"2022-09-13T06:01:28.309Z","dependency_job_id":"62a063d8-8eac-4925-a81e-03830e3cc67f","html_url":"https://github.com/bedatadriven/renjin","commit_stats":null,"previous_names":[],"tags_count":708,"template":false,"template_full_name":null,"purl":"pkg:github/bedatadriven/renjin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bedatadriven%2Frenjin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bedatadriven%2Frenjin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bedatadriven%2Frenjin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bedatadriven%2Frenjin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bedatadriven","download_url":"https://codeload.github.com/bedatadriven/renjin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bedatadriven%2Frenjin/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265220757,"owners_count":23729875,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["compiler","interpreter","java","language","r","renjin","statistics"],"created_at":"2024-08-05T03:02:02.368Z","updated_at":"2025-07-13T23:31:55.902Z","avatar_url":"https://github.com/bedatadriven.png","language":"R","funding_links":[],"categories":["R","JVM语言"],"sub_categories":[],"readme":"# renjin \u003ca href='http://www.renjin.org/'\u003e\u003cimg src='http://www.renjin.org/assets/img/logo.svg' align=\"right\" width=\"180\"/\u003e\u003c/a\u003e\n\n[![Build Status](https://build.renjin.org/job/Renjin-Release/badge/icon)](https://build.renjin.org/job/Renjin-Release/)\n\nRenjin is a JVM-based interpreter for the [The R Project for Statistical\nComputing](http://www.r-project.org).\n\nThe primary goals of the project are to provide a modern interpreter\nthat serves as a drop-in replacement for GNU R, but is easier to\nintegrate with other systems, offers better performance, and is\nmore extensible.\n\nFor more information, please visit http://www.renjin.org.\n\n## Installation\n\nStandalone distributions of Renjin are available for ad-hoc analysis. Downloads\nare available at [renjin.org](http://www.renjin.org).\n\nArtifacts from the latest successful build are available from the build server [here](https://nexus.bedatadriven.com/content/groups/public/org/renjin/).\n\n### Debian (and Ubuntu)\n\nYou can add our APT repository and get regular updates automatically:\n```bash\n# 1. Add the Renjin repository signing keys to be able to verify downloaded packages\nsudo apt-key adv --keyserver hkp://packages.renjin.org:80 --recv-keys EB2514FC345926E9\n\n# 2. Add the Renjin repository\necho deb http://packages.renjin.org/repo/apt stable main | sudo tee /etc/apt/sources.list.d/renjin.list\n\n# 3. Update list of available packages\nsudo apt-get update\n\n# 4. Install Renjin\nsudo apt-get install renjin\n```\n\nPlease see our [Downloads](http://www.renjin.org/downloads.html) page.\n\n## Adding to a Maven Project\n\nUsing a a modern build tool such a Maven is definitely recommended, particularly\nif you're planning on including R packages which often have several levels of\ntransitive dependencies.\n\nYou can add Renjin to your Maven project by adding the following to your `pom.xml` file:\n\n```.xml\n\u003cdependencies\u003e\n  \u003cdependency\u003e\n    \u003cgroupId\u003eorg.renjin\u003c/groupId\u003e\n    \u003cartifactId\u003erenjin-script-engine\u003c/artifactId\u003e\n    \u003cversion\u003eRELEASE\u003c/version\u003e\n  \u003c/dependency\u003e\n\u003c/dependencies\u003e\n\u003crepositories\u003e\n  \u003crepository\u003e\n    \u003cid\u003ebedatadriven\u003c/id\u003e\n    \u003cname\u003ebedatadriven public repo\u003c/name\u003e\n    \u003curl\u003ehttps://nexus.bedatadriven.com/content/groups/public/\u003c/url\u003e\n  \u003c/repository\u003e\n\u003c/repositories\u003e\n```\n\n## Compiling from Source\n\nAt this time, building Renjin completely is only supported on Ubuntu 16.04.\nThe resulting Java builds are fully platform-independent.\n\nSee [BUILDING](BUILDING.md) for more information.\n\n## License\n\nRenjin is available under the GPLv2 (or higher) license, see [LICENSE](LICENSE.txt) for the\nfull text of the license. Renjin also includes code from R which is\nredistributed here. R uses\n[many different licenses](http://www.r-project.org/Licenses/) so check the file\nsources to see which license applies.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbedatadriven%2Frenjin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbedatadriven%2Frenjin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbedatadriven%2Frenjin/lists"}