https://github.com/stufield/pcapkg
This package contains the general functions necessary for the unsupervised exploratory analysis of high-dimensional proteomic data using Principal Component Analysis (PCA). Primary tools related to calculation of principal components and the visualization of loadings and projections of these components.
https://github.com/stufield/pcapkg
Last synced: about 1 year ago
JSON representation
This package contains the general functions necessary for the unsupervised exploratory analysis of high-dimensional proteomic data using Principal Component Analysis (PCA). Primary tools related to calculation of principal components and the visualization of loadings and projections of these components.
- Host: GitHub
- URL: https://github.com/stufield/pcapkg
- Owner: stufield
- License: other
- Created: 2024-09-29T18:45:09.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-19T19:25:45.000Z (about 1 year ago)
- Last Synced: 2025-03-19T20:26:01.993Z (about 1 year ago)
- Language: R
- Homepage: https://stufield.github.io/pcapkg/
- Size: 6.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- License: LICENSE
- Support: .github/SUPPORT.md
Awesome Lists containing this project
README
---
output: github_document
---
```{r setup, include = FALSE}
Sys.setlocale("LC_COLLATE", "en_US.UTF-8") # ensure common sorting envir
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
ver <- desc::desc_get_version(".")
ver <- paste0("https://img.shields.io/badge/Version-", ver,
"-success.svg?style=flat&logo=github")
```
# The `pckpkg` package

[](https://cran.r-project.org/package=pcapkg)
[](https://github.com/stufield/pcapkg/actions)
[](https://cran.r-project.org/package=pcapkg)
[](https://app.codecov.io/gh/stufield/pcapkg?branch=main)
[](https://lifecycle.r-lib.org/articles/stages.html#stable)
[](https://choosealicense.com/licenses/mit/)
## Overview
The `pcapkg` package contains the general functions necessary for the
unsupervised exploratory analysis of high-dimensional proteimic data using
Principal Component Analysis (PCA). The primary tools in this package are
dedicated to either the calculation of principal components, or the
visualization of loadings and projections of those components.
-----------------
## Installation
It is possible to install a specific version of `pcapkg`
```{r install-git, eval = FALSE}
# current dev version
remotes::install_github("stufield/pcapkg")
# or a specific version
remotes::install_github("stufield/pcapkg@v0.0.1")
```
-----------------
## Usage
To load `pcapkg` simply make a call to `library()` as usual:
```{r, eval = FALSE}
library(pcapkg)
```
## Help summary of the package
```{r help, eval = FALSE}
library(help = pcapkg)
```