-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathREADME.Rmd
executable file
·42 lines (31 loc) · 1.64 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# Riemann <img src='man/figures/logo.png' alt="" align="right" height="150" /></a>
<!-- badges: start -->
[](https://CRAN.R-project.org/package=Riemann)
[](https://github.com/kisungyou/Riemann/actions)
[](https://app.codecov.io/gh/kisungyou/Riemann?branch=master)
<!-- badges: end -->
**Riemann** is an R package for learning with data on **Riemannian manifolds**. In statistics and machine learning, the term *manifold* appears in two realms; one is *dimensionality reduction* where we assume that low-dimensional data manifold is embedded in high-dimensional Euclidean space. The other is *statistics on manifolds* - data lie on some Riemannian manifolds that we are already well aware of. **Riemann** aims to achieve the latter. If you are interested in dimension reduction, please check another R package [Rdimtools](https://kisungyou.com/Rdimtools/).
### Installation
* Option 1 : **released** version from [CRAN](https://CRAN.R-project.org).
``` r
install.packages("Riemann")
```
* Option 2 : **development** version from [GitHub](https://github.com/).
``` r
if (!require("devtools")) {
install.packages("devtools")
}
devtools::install_github("kisungyou/Riemann")
```