https://github.com/uscbiostats/partition.archive
https://github.com/uscbiostats/partition.archive
data-reduction r-package rstats
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/uscbiostats/partition.archive
- Owner: USCbiostats
- Created: 2018-01-19T17:55:14.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-06T17:29:10.000Z (almost 7 years ago)
- Last Synced: 2025-01-09T20:42:29.278Z (4 months ago)
- Topics: data-reduction, r-package, rstats
- Language: R
- Homepage: https://uscbiostats.github.io/partition
- Size: 761 KB
- Stars: 0
- Watchers: 5
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
Awesome Lists containing this project
README
---
output: github_document
---[](https://travis-ci.org/USCbiostats/partition)
[](https://ci.appveyor.com/project/gvegayon/partition-nqr95/branch/master)
[](https://codecov.io/github/USCbiostats/partition?branch=master)```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# partitionThe goal of partition is to ...
## Installation
You can install partition from GitHub with:
```{r gh-installation, eval = FALSE}
# install.packages("devtools")
devtools::install_github("USCbiostats/partition")
```## Example
This is a basic example which shows you how to solve a common problem:
```{r example, cache=TRUE}
library(partition)blk.vec = 2:20
c.lb = .2
c.ub = .4
n = 200dat = sim_blk_diag_mvn( blk.vec, c.lb, c.ub, n )
rslts = plot_dr( dat, method="PC1")
```