knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/"
)

cocoreg

cocoreg is an R-package for extracting shared variation in collections of datasets using regression models. The current stable release is available in CRAN:

http://cran.r-project.org/package=cocoreg

The algorithm is described in the paper:

Using regression makes extraction of shared variation in multiple datasets easy: Jussi Korpela, Andreas Henelius, Lauri Ahonen, Arto Klami, Kai Puolamäki, Data Mining and Knowledge Discovery, 2016. URL: http://dx.doi.org/10.1007/s10618-016-0465-y

The authors' version is available in this repository as cocoreg_plain.pdf. The final publication will be available at link.springer.com.

Usage

A minimal usage example:

library(cocoreg)
dc <- create_syn_data_toy()
ccr <- cocoreg(dc$data)
shared.by.all.df <- variation_shared_by(dc, 'all') #only on synthetic datasets
ggplot_dclst(list(observed = dc$data, shared = shared.by.all.df, cocoreg = ccr$data))

library(reshape) #importing from namespace does not work as expected
ggcompare_dclst(list(shared = shared.by.all.df, cocoreg = ccr$data))

Overview

The most important functions in cocoreg are:

Installation

Install the release version from CRAN:

install.packages("cocoreg")

Or the development version from GitHub:

# install.packages("devtools")
# library(devtools)
devtools::install_github("bwrc/cocoreg-r")


bwrc/cocoreg-r documentation built on May 13, 2019, 9:09 a.m.