-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
86 lines (62 loc) · 1.73 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
---
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%"
)
```
# TDbasedUFE
<!-- badges: start -->
<!-- badges: end -->
The goal of TDbasedUFE is to ...
## Installation
``` r
if (!require("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("TDbasedUFE")
```
You can install the latest release of TDbasedUFE from
[GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("tagtag/[email protected]")
```
You can install the development version of
TDbasedUFE from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("tagtag/TDbasedUFE",build_vignettes = TRUE)
```
or if it does not work, try
``` r
# install.packages("devtools")
devtools::install_github("tagtag/TDbasedUFE")
```
# TDbasedUFE
**Tensor decomposition based unsupervised feature extraction**
## Manuscript
The theoretical back ground of this package was described in the following book:
***"Unsupervised Feature Extraction Applied to Bioinformatics:
A PCA Based and TD Based Approach"*** by Y-h. Taguchi
Please cite the book as:
```latex
@book{Taguchi2020,
doi = {10.1007/978-3-030-22456-1},
url = {https://doi.org/10.1007/978-3-030-22456-1},
year = {2020},
publisher = {Springer International Publishing},
author = {Y-H. Taguchi},
title = {Unsupervised Feature Extraction Applied to Bioinformatics}
}
```
[![DOI]](https://doi.org/10.1007/978-3-030-22456-1)
## Vignettes
How to use it
vignette("QuickStart")
For more theoretical background
vignette("TDbasedUFE")