Skip to content

Instantly share code, notes, and snippets.

View cplaisier's full-sized avatar

Christopher L Plaisier, PhD cplaisier

View GitHub Profile
import pandas as pd # May not need this or may have already done this but so you know where pd comes from
#### Two possible solutions
##############################################################################
### 1. Calculate all possible values which is what you are doing currently ###
##############################################################################
corrDF_R = pd.DataFrame(index=df.index, columns=df.index)
corrDF_p = pd.DataFrame(index=df.index, columns=df.index)
for i in corrDF_p.index:
##########################################################
## OncoMerge: oncoMerge.py ##
## ______ ______ __ __ ##
## /\ __ \ /\ ___\ /\ \/\ \ ##
## \ \ __ \ \ \___ \ \ \ \_\ \ ##
## \ \_\ \_\ \/\_____\ \ \_____\ ##
## \/_/\/_/ \/_____/ \/_____/ ##
## @Developed by: Plaisier Lab ##
## (https://plaisierlab.engineering.asu.edu/) ##
## Arizona State University ##