{"id":13400943,"url":"https://github.com/openscoring/openscoring-r","last_synced_at":"2026-05-12T11:34:06.125Z","repository":{"id":68882614,"uuid":"136839930","full_name":"openscoring/openscoring-r","owner":"openscoring","description":"R client library for the Openscoring REST web service","archived":false,"fork":false,"pushed_at":"2018-06-12T09:43:32.000Z","size":19,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-07-31T19:27:38.503Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/openscoring.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,"roadmap":null,"authors":null}},"created_at":"2018-06-10T19:48:36.000Z","updated_at":"2023-02-16T19:28:43.000Z","dependencies_parsed_at":"2023-04-06T09:16:56.169Z","dependency_job_id":null,"html_url":"https://github.com/openscoring/openscoring-r","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openscoring%2Fopenscoring-r","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openscoring%2Fopenscoring-r/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openscoring%2Fopenscoring-r/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openscoring%2Fopenscoring-r/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openscoring","download_url":"https://codeload.github.com/openscoring/openscoring-r/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241352924,"owners_count":19948942,"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":[],"created_at":"2024-07-30T19:00:57.151Z","updated_at":"2026-05-12T11:34:01.103Z","avatar_url":"https://github.com/openscoring.png","language":"R","funding_links":[],"categories":["R"],"sub_categories":[],"readme":"Openscoring-R\n=============\n\nR client library for the Openscoring REST web service.\n\n# Installation #\n\nInstall from GitHub using the [`devtools` package](http://cran.r-project.org/web/packages/devtools/):\n```R\nlibrary(\"devtools\")\n\ninstall_git(\"git://github.com/openscoring/openscoring-r.git\")\n```\n\n# Usage #\n\nCreating an `Openscoring` S4 object:\n```R\nlibrary(\"openscoring\")\n\nos = new(\"Openscoring\", base_url = \"http://localhost:8080/openscoring\")\n```\n\nDeploying a PMML document `DecisionTreeIris.pmml` as an `Iris` model:\n```R\ndeployFile(os, \"Iris\", \"DecisionTreeIris.pmml\")\n```\n\nEvaluating the `Iris` model with a data record:\n```R\narguments = list(\n\tSepal_Length = 5.1,\n\tSepal_Width = 3.5,\n\tPetal_Length = 1.4,\n\tPetal_Width = 0.2\n)\n\nresult = evaluate(os, \"Iris\", arguments)\nprint(result)\n```\n\nThe same, but wrapping the data record into an `EvaluationRequest` S4 object for request identification purposes:\n```R\nevaluationRequest = new(\"EvaluationRequest\", id = \"record-001\", arguments = arguments)\n\nevaluationResponse = evaluate(os, \"Iris\", evaluationRequest)\nprint(evaluationResponse@result)\n```\n\nEvaluating the `Iris` model with data records from the `Iris.csv` CSV file, storing the results to the `Iris-results` CSV file:\n```R\nevaluateCsvFile(os, \"Iris\", \"Iris.csv\", \"Iris-results.csv\")\n```\n\nUndeploying the `Iris` model:\n```R\nundeploy(os, \"Iris\")\n```\n\n# De-installation #\n\nUninstall:\n```R\nremove.packages(\"openscoring\")\n```\n\n# License #\n\nOpenscoring-R is dual-licensed under the [GNU Affero General Public License (AGPL) version 3.0](http://www.gnu.org/licenses/agpl-3.0.html), and a commercial license.\n\n# Additional information #\n\nOpenscoring-R is developed and maintained by Openscoring Ltd, Estonia.\n\nInterested in using Openscoring software in your application? Please contact [info@openscoring.io](mailto:info@openscoring.io)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenscoring%2Fopenscoring-r","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenscoring%2Fopenscoring-r","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenscoring%2Fopenscoring-r/lists"}