{"id":17403849,"url":"https://github.com/bgreenwell/ramify","last_synced_at":"2026-03-12T10:02:06.032Z","repository":{"id":27645065,"uuid":"31129928","full_name":"bgreenwell/ramify","owner":"bgreenwell","description":"Additional matrix functionality for R","archived":false,"fork":false,"pushed_at":"2025-06-23T17:34:08.000Z","size":2561,"stargazers_count":3,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-06-23T18:22:35.173Z","etag":null,"topics":["matrices","r"],"latest_commit_sha":null,"homepage":"http://bgreenwell.github.io/ramify/","language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bgreenwell.png","metadata":{"files":{"readme":"README.md","changelog":"NEWS.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2015-02-21T15:36:17.000Z","updated_at":"2025-06-23T17:32:31.000Z","dependencies_parsed_at":"2025-06-23T18:32:54.777Z","dependency_job_id":null,"html_url":"https://github.com/bgreenwell/ramify","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bgreenwell/ramify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bgreenwell%2Framify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bgreenwell%2Framify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bgreenwell%2Framify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bgreenwell%2Framify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bgreenwell","download_url":"https://codeload.github.com/bgreenwell/ramify/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bgreenwell%2Framify/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272801173,"owners_count":24995233,"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","status":"online","status_checked_at":"2025-08-30T02:00:09.474Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["matrices","r"],"created_at":"2024-10-16T19:08:46.053Z","updated_at":"2026-03-12T10:01:59.524Z","avatar_url":"https://github.com/bgreenwell.png","language":"R","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ramify\n\n[![CRAN\\_Status\\_Badge](http://www.r-pkg.org/badges/version/ramify)](http://cran.r-project.org/package=ramify)\n[![R-CMD-check](https://github.com/w108bmg/ramify/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/w108bmg/ramify/actions/workflows/R-CMD-check.yaml)\n![](https://img.shields.io/badge/lifecycle-retired-orange.svg)\n\n`ramify` is an R package that provides additional matrix functionality. Its goal is to make matrix creation and manipulation more convenient, especially for users familiar with scientific languages like MATLAB, Octave, or Python with NumPy.\n\n## Core features\n\n* **Intuitive matrix creation**: Create matrices from character strings or lists using `mat()`, which is useful for seeing the structure of the matrix in your code.\n* **Block matrices**: Easily construct block matrices from existing matrix objects using `bmat()`.\n* **Pretty-printing**: Display large matrices in the console in a compact and readable format with `pprint()`.\n* **Convenience functions**: A suite of functions familiar to MATLAB and NumPy users, including `eye()`, `ones()`, `zeros()`, `linspace()`, `meshgrid()`, `repmat()`, and more.\n\n## Installation\n\nYou can install the stable release from CRAN:\n```r\ninstall.packages(\"ramify\")\n```\nOr, you can install the development version from GitHub:\n```r\n#install.packages(\"remotes\")\nremotes::install_github(\"bgreenwell/ramify\")\n```\n\n## Usage\n\n```r\nlibrary(ramify)\n\n# Create a 2x3 matrix from a string.\nmat(\"1, 2, 3; 4, 5, 6\")\n#\u003e      [,1] [,2] [,3]\n#\u003e [1,]    1    2    3\n#\u003e [2,]    4    5    6\n\n# Use spaces as a separator instead of commas.\nmat(\"1 2 3; 4 5 6\", sep = \"\")\n#\u003e      [,1] [,2] [,3]\n#\u003e [1,]    1    2    3\n#\u003e [2,]    4    5    6\n\n# Create a 3x3 identity matrix.\neye(3)\n#\u003e      [,1] [,2] [,3]\n#\u003e [1,]    1    0    0\n#\u003e [2,]    0    1    0\n#\u003e [3,]    0    0    1\n\n# Create a 2x4 matrix of ones.\nones(2, 4)\n#\u003e      [,1] [,2] [,3] [,4]\n#\u003e [1,]    1    1    1    1\n#\u003e [2,]    1    1    1    1\n\n# \"Pretty\" printing large matrices\npprint(randn(100, 100))\n#\u003e 100 x 100 matrix of doubles: \n#\u003e \n#\u003e              [,1]       [,2]      [,3] ...     [,100]\n#\u003e [1,]   -0.0918915 -1.6535266 1.9916211 ...  0.2545715\n#\u003e [2,]   -1.3707209  0.8595378 1.6227581 ...  0.3485438\n#\u003e [3,]    0.3271210 -0.4506809 2.3066801 ... -0.2320033\n#\u003e ...           ...        ...       ... ...        ...\n#\u003e [100,]  0.3407804  1.3619685 0.4093369 ... -0.3140292\n```\n\n## Bug reports\n\nIf you find a bug or have a feature request, please submit an issue on [GitHub](https://github.com/bgreenwell/ramify/issues).\n\n## License\n\nThis package is licensed under the GPL-3.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbgreenwell%2Framify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbgreenwell%2Framify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbgreenwell%2Framify/lists"}