-
-
Notifications
You must be signed in to change notification settings - Fork 284
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from ewengillies/new_official_master
Merge Developer into Master
- Loading branch information
Showing
102 changed files
with
20,423 additions
and
10,192 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Vim swap files | ||
*.swp | ||
*.swo | ||
|
||
# Python byte code | ||
*.pyc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
language: python | ||
python: | ||
# We don't actually use the Travis Python since we are using Conda, but this | ||
# keeps it organized. | ||
- "2.7" | ||
- "3.5" | ||
- "3.6" | ||
install: | ||
- sudo apt-get update | ||
# We do this conditionally because it saves us some downloading if the | ||
# version is the same. | ||
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then | ||
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh; | ||
else | ||
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; | ||
fi | ||
- bash miniconda.sh -b -p $HOME/miniconda | ||
- export PATH="$HOME/miniconda/bin:$PATH" | ||
- hash -r | ||
- conda config --set always_yes yes --set changeps1 no | ||
- conda update -q conda | ||
# Useful for debugging any issues with conda | ||
- conda info -a | ||
|
||
# Create and activate the environmenbt | ||
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION | ||
- source activate test-environment | ||
# Ensure we will install all pip packages within conda | ||
- conda install pip | ||
# Install numpy first to avoid headaches | ||
- pip install numpy | ||
# Install the r_packages | ||
- conda install rpy2 | ||
- ./install_r_packages.sh | ||
# Install the packages needed for testing | ||
- pip install .['test'] | ||
script: | ||
# Run the tests | ||
- pytest -v |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# NOTE: when installing, conda will include all things under $PREFIX as a part | ||
# of your distributed package. As such, the R libraries are installed to | ||
# the correct library location under $PREFIX. This may not be the most robust | ||
# solution, but it works for now. | ||
|
||
R_LIBS_BUILD=$PREFIX/lib/R/library | ||
# Install r-MASS package, which is a dependency of RCIT/RCOT | ||
R -e "install.packages('MASS', '$R_LIBS_BUILD', repos='https://cloud.r-project.org/')" | ||
# Install momentchi2, whichs is a dependency of RCIT/RCOT | ||
R -e "install.packages('momentchi2', '$R_LIBS_BUILD', repos = 'https://cloud.r-project.org/')" | ||
# Install the RCIT package | ||
R -e "install.packages('external_packages/RCIT', '$R_LIBS_BUILD', repos=NULL, type='source')" | ||
# Install tigramite | ||
$PYTHON setup.py install --single-version-externally-managed --record=record.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
package: | ||
name: tigramite | ||
version: 4.0.0 | ||
|
||
source: | ||
path: ../.. | ||
|
||
requirements: | ||
build: | ||
- cython | ||
- numpy | ||
- rpy2 | ||
- setuptools | ||
- python | ||
host: | ||
- cython | ||
- numpy | ||
- rpy2 | ||
- setuptools | ||
- python | ||
run: | ||
- python | ||
- numpy | ||
- scipy | ||
- six | ||
- scikit-learn>=0.18 | ||
- matplotlib>=1.5 | ||
- networkx>=1.10 | ||
- statsmodels | ||
- rpy2 | ||
|
||
test: | ||
source_files: | ||
- tests/*py | ||
requires: | ||
- nose | ||
- pytest | ||
- rpy2 | ||
commands: | ||
- pytest . | ||
|
||
about: | ||
home: https://github.com/jakobrunge/tigramite | ||
license: GPL-3 | ||
license_file: license.txt | ||
summary: Tigramite is a time series analysis aimed at causal discovery |
Binary file modified
BIN
-2 Bytes
(99%)
docs/_images/math/0062c26909b3e07ee8f5a6285b2563d69bc979ff.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+0 Bytes
(100%)
docs/_images/math/0b7c1e16a3a8a849bb8ffdcdbf86f65fd1f30438.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+0 Bytes
(100%)
docs/_images/math/12535500db0213985b2cce27db85468b60985da0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-15 Bytes
(99%)
docs/_images/math/14f247b2a9ccd480e67621eb0d8a2d7a68a285bd.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-1 Byte
(100%)
docs/_images/math/21fc11b715eef698662fe1cc017d7ae2d53320d8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1 Byte
(100%)
docs/_images/math/276f7e256cbddeb81eee42e1efc348f3cb4ab5f8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+0 Bytes
(100%)
docs/_images/math/2fc62c02be8e341b7c32727e07b633086e70ba8a.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+2 Bytes
(100%)
docs/_images/math/334b0728f25dd84a28e483181038a307ea6e483e.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-11 Bytes
(98%)
docs/_images/math/3d927294dd9fee97ab16ad5032baf0c08cdda4c2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+0 Bytes
(100%)
docs/_images/math/44ad79f4db8277d12b1a6f5def2d30122c89b9b0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+0 Bytes
(100%)
docs/_images/math/499a2ee48b33448e80b97af9df9550828bdbfb59.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-16 Bytes
(99%)
docs/_images/math/503d970dfd19d2f6bfd5f3d3876a74d8816cbf70.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-4 Bytes
(98%)
docs/_images/math/557d5fad862c9046d26e1a930f45a550c146d592.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-5 Bytes
(99%)
docs/_images/math/5c8ff70420eb65f959d5e2a9b244fc565d9ecbd6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-4 Bytes
(98%)
docs/_images/math/6b21e0b0899a0d2879d3b8019087fa630bab4ea2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+0 Bytes
(100%)
docs/_images/math/6de62736d8aa90101801d7a1416e97e921d1620f.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-11 Bytes
(99%)
docs/_images/math/70852cea72eb5c4d0a45c0db08b49476f4404426.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-1 Byte
(100%)
docs/_images/math/7720e563212e11bf72de255ab82c2a3b97c1a7f5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+0 Bytes
(100%)
docs/_images/math/7a3d0c9264473a58cc3a769f99a662631131377c.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+0 Bytes
(100%)
docs/_images/math/7a7bb470119808e2db2879fc2b2526f467b7a40b.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+4 Bytes
(100%)
docs/_images/math/7bce831f5eba0d0e0fcb0cced170b2926804500a.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+0 Bytes
(100%)
docs/_images/math/877d234f4cec6974ce218fc2e975a486a7972dfd.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-7 Bytes
(99%)
docs/_images/math/90efcfdee16eaaec575238e2e6df5f731c8609bf.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2 Bytes
(100%)
docs/_images/math/9c7f8f771e36601a75e3520845155d09080f6281.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-7 Bytes
(99%)
docs/_images/math/a23635874ee5c9865debbf9c8686e9367f2850e5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1 Byte
(100%)
docs/_images/math/ab1718d730cd7b17532f760861e9659b68a65156.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
docs/_images/math/bcb2457ac9d8995a4f34d57cadac7ecbbe58f3bd.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
docs/_images/math/bdb2d04d69b82c2288f5ef46664d548355e130af.png
Oops, something went wrong.
Binary file modified
BIN
-16 Bytes
(99%)
docs/_images/math/d6d56a5dd20011b190ba97d6f36d154e11c9035c.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
docs/_images/math/d843100cd0a02e1e5184694228a7ac41e19e8af2.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
docs/_images/math/df0deb143e5ac127f00bd248ee8001ecae572adc.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
docs/_images/math/e03ea88dda29ab6daa19c839ff37b8115e0a10e1.png
Oops, something went wrong.
Binary file modified
BIN
-9 Bytes
(96%)
docs/_images/math/e486de19dbb61c9a63584f6e4ddd6e92ef03d665.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
docs/_images/math/e655092ec45224f09927d0ed9e6fcdfbddb67754.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
docs/_images/math/f75f28dbcbec776fbe031f8ac923f83f9260bd8a.png
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.