https://github.com/jamesyang007/adelie-r
R package wrapping the Python package adelie.
https://github.com/jamesyang007/adelie-r
Last synced: 7 months ago
JSON representation
R package wrapping the Python package adelie.
- Host: GitHub
- URL: https://github.com/jamesyang007/adelie-r
- Owner: JamesYang007
- License: other
- Created: 2024-03-14T22:21:04.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-28T16:52:03.000Z (7 months ago)
- Last Synced: 2025-03-18T01:11:25.113Z (7 months ago)
- Language: R
- Homepage:
- Size: 807 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
- License: LICENSE
Awesome Lists containing this project
README
# Adelie-R
## Installation
1. After cloning the repository, run the following command to pull the Python package as well:
```bash
git submodule update --init --recursive
```2. Start an R session in the terminal:
```bash
R
```3. Install `devtools` if you do not have it already:
```bash
install.packages("devtools")
```4. __(MacOS users only)__ `adelie` requires `OpenMP` to be available.
For those who are using `gcc`, there is nothing to do.
For those using `clang`, we recommend installing `OpenMP` through `Homebrew`.
To install `Homebrew`, follow the instructions
[here](https://brew.sh/).
Once `Homebrew` is installed, run the following to install `OpenMP`:
```bash
brew install libomp
```5. Install `adelie` using `devtools`:
```bash
library(devtools)
install()
```