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

https://github.com/cedekpoole/pca-plot

PCA Plot
https://github.com/cedekpoole/pca-plot

data-visualization genomics highcharts npm-package react

Last synced: about 2 months ago
JSON representation

PCA Plot

Awesome Lists containing this project

README

          

# Principal Component Analysis (PCA) plot

The 'pca-plot' package is a way to check seq data quality. It visualises the data conditionally in a 2D or 3D plot (dependent on the number of PCs selected), where each point represents a sample. The distance between the points is a measure of the similarity between the samples. The more similar the samples are, the closer the points will be to each other.

## Installation

```bash
npm install pca-plot
```

## Usage

```javascript
import { PCAPlot } from 'pca-plot';

const App = () => {
return (
<>

>
)
}

export default App;
```