Skip to content

xuefeicao/tdcca

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Time-dependent Canonical Correlation Analysis

Canonical Correlation Analysis is a technique in multivariate data analysis for finding correlation and pairs of vectors that maximizes the correlation between a set of paired variables. Many important problems involve recoding time-dependent observations. In order to understand the coupling dynamics between the two sources, spot trends, detect anomalies, in this paper, we introduce the time-dependent canonical correlation analysis (TDCCA), a method of inferring time-dependent canonical vectors of paired variables. For more details of our paper, please refer to our paper.

cite our paper

@article{cao2019time, title={Time-dependent Canonical Correlation Analysis for Multilevel Time Series}, author={Cao, Xuefei and Ke, Jun and Sandstede, Björn and Luo, Xi}, journal={bioRxiv}, pages={650101}, year={2019}, publisher={Cold Spring Harbor Laboratory} }

Getting Started

We provide both simulation examples used in our paper. The main computation algorithm is not added into the class method for the convenience of algorithm development for multi-view data. The package saves all the analysis to the given folder and saves the preprocessed data into the hdf5 file. The parallel computing with multi-cores is also allowed and tested in Linux system. This package also provides other algorithms to optimize the function, including cvxpy naive optimization, cvxpy naive admm optimization and two other admm algorithms. For details, see the admm_computation.py file. However, these functions have not been tested thoroughly.

These instructions will get you a copy of the project up running on your local machine for development and testing purposes.

This package is also published in pypi. For a quick installation, try

pip install tdcca 

Prerequisites

What things you need to install the software and how to install them

See setup.py for details of packages requirements. 

Installing from GitHub

Download the packages by using git clone https://github.com/xuefeicao/tdcca.git

python setup.py install

If you experience problems related to installing the dependency Matplotlib on OSX, please see https://matplotlib.org/faq/osx_framework.html

Intro to our package

After installing our package locally, try to import tdcca in your python environment and learn about package's function. Note: our package name in pypi is tdcca. It is recommended that users scale the data before running our package.

from tdcca import *
help(multi_sim)

Examples

The examples subfolder includes simulations provided in the paper. 

Running the tests

The test has been conducted in both Linux and Mac Os.

Built With

  • Python 2.7

Compatibility

  • Python 2.7

Authors

License

This project is licensed under the MIT License - see the LICENSE file for details