An open API service indexing awesome lists of open source software.

https://github.com/pythoncoderunicorn/mathr

basic math functions
https://github.com/pythoncoderunicorn/mathr

Last synced: 4 months ago
JSON representation

basic math functions

Awesome Lists containing this project

README

          

# mathR

A basic math function library

```
remotes::install_github('PythonCoderUnicorn/mathR')
```
or
```
devtools::install_github("PythonCoderUnicorn/mathR")
```

load the library
```
library(mathR)
```

Add example
```
add(4,8)

# or
x = 1:5
y = 11:16
add(x, y)
```