├── .gitignore ├── Dataset-Example-Phenotype-and-Genes-Nonlinear.csv ├── Dataset-Example-Phenotype-and-Genes-Pool-1.csv ├── Dataset-Example-Phenotype-and-Genes-Pool-2.csv ├── Dataset-Example-Phenotype-and-Genes.csv ├── LICENSE ├── PCH.pbm ├── README.md ├── Tutorial-on-Causality.ipynb ├── linear.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zecevic-matej/SMLW-Causality-Tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /Dataset-Example-Phenotype-and-Genes-Nonlinear.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zecevic-matej/SMLW-Causality-Tutorial/HEAD/Dataset-Example-Phenotype-and-Genes-Nonlinear.csv -------------------------------------------------------------------------------- /Dataset-Example-Phenotype-and-Genes-Pool-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zecevic-matej/SMLW-Causality-Tutorial/HEAD/Dataset-Example-Phenotype-and-Genes-Pool-1.csv -------------------------------------------------------------------------------- /Dataset-Example-Phenotype-and-Genes-Pool-2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zecevic-matej/SMLW-Causality-Tutorial/HEAD/Dataset-Example-Phenotype-and-Genes-Pool-2.csv -------------------------------------------------------------------------------- /Dataset-Example-Phenotype-and-Genes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zecevic-matej/SMLW-Causality-Tutorial/HEAD/Dataset-Example-Phenotype-and-Genes.csv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zecevic-matej/SMLW-Causality-Tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /PCH.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zecevic-matej/SMLW-Causality-Tutorial/HEAD/PCH.pbm -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zecevic-matej/SMLW-Causality-Tutorial/HEAD/README.md -------------------------------------------------------------------------------- /Tutorial-on-Causality.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zecevic-matej/SMLW-Causality-Tutorial/HEAD/Tutorial-on-Causality.ipynb -------------------------------------------------------------------------------- /linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zecevic-matej/SMLW-Causality-Tutorial/HEAD/linear.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zecevic-matej/SMLW-Causality-Tutorial/HEAD/utils.py --------------------------------------------------------------------------------