-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
71 lines (49 loc) · 2.27 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
```
# liminal
<!-- badges: start -->
[![R build status](https://github.com/sa-lee/liminal/workflows/R-CMD-check/badge.svg)](https://github.com/sa-lee/liminal/actions)
[![CRAN status](https://www.r-pkg.org/badges/version/liminal)](https://CRAN.R-project.org/package=liminal)
<!-- badges: end -->
**liminal** is an R package for constructing interactive visualisations designed
for exploratory high-dimensional data analysis. It's main purpose is to
combine tours with (non-linear) dimension reduction algorithms to provide a
more holistic view of the geometry and topology of a dataset. These
are designed for data analysts first, so they render either inside the
RStudio Viewer pane or from a web-browser using **shiny**.
There are two main functions for generating tour interfaces:
* The basic tour animation via `limn_tour()`
* Linking tours to another view `limn_tour_link()`
The goal of **liminal** is to provide complementary visualisations for use with
understanding embedding algorithms such as tSNE. It has been
[shown](https://distill.pub/2016/misread-tsne/) that in order to produce an
'effective' embedding one may have to play with hyperparamters and various
settings for these algorithms. **liminal** allows you to see how different
parameterisations warps the underlying high-dimensional space.
See the [liminal vignette](https://sa-lee.github.io/liminal/articles/liminal.html) for details of package usage
and our [arXiv preprint](https://arxiv.org/abs/2012.06077) for a complete discussion on how to apply **liminal** to real data analysis workflows like clustering.
## Quick Start
The release version of **liminal** is available on CRAN:
```{r, eval = FALSE}
install.packages("liminal")
```
The development version of **liminal** can be installed as follows:
```{r, eval = FALSE}
# install.packages("remotes")
remotes::install_github("sa-lee/liminal")
```
You can generate a tour view that will load in the Rstudio Viewer pane:
```{r, eval = FALSE}
library(liminal)
limn_tour(fake_trees, dim1:dim10)
```
The interface provides instructions on how to use it, click on the help button
to get started!