zaneveld / karenina

Simulation and modeling tools for studying Anna Karenina effects in animal microbiomes
2 stars 6 forks source link

Travis CI Engine and Issue Resolution #23

Closed SLPeoples closed 6 years ago

SLPeoples commented 6 years ago

resolves #21 Updated spatial_ornstein_uhlenbeck.py to provide legible help text when the user provides no output parameter.

Expand

### karenina ```bash Usage: karenina -o ./simulation_results karenina: error: -o --output is required For additional help: karenina -h ``` ### karenina -h ```bash Usage: karenina -o ./simulation_results This script simulates microbiome change over time using Ornstein-Uhlenbeck (OU) models. These are similar to Brownian motion models, with the exception that they include reversion to a mean. Output is a tab-delimited data table and figures. Options: --version show program's version number and exit -h, --help show this help message and exit Required options: -o OUTPUT, --output=OUTPUT the output folder for the simulation results Optional options: --pert_file_path=PERT_FILE_PATH file path to a perturbation file specifying parameters for the simulation results [default: C:\Users\Ripti\Anaconda3\lib\site-packages\karenina-0. 0.1-py3.6.egg\data\perturbations\xyz_lambda_zero.csv] --treatment_names=TREATMENT_NAMES Comma seperated list of treatment named [default:control,destabilizing_treatment] -n N_INDIVIDUALS, --n_individuals=N_INDIVIDUALS Comma-separated number of individuals to simulate per treatment.Note: This value must be enclosed in quotes. Example: "35,35". [default: 35,35] -t N_TIMEPOINTS, --n_timepoints=N_TIMEPOINTS Number of timepoints to simulate. (One number, which is the same for all treatments) [default: 10] -p PERTURBATION_TIMEPOINT, --perturbation_timepoint=PERTURBATION_TIMEPOINT Timepoint at which to apply a perturbation. Must be less than --n_timepoints [default: 5] -d PERTURBATION_DURATION, --perturbation_duration=PERTURBATION_DURATION Duration that the perturbation lasts. [default: 100] --interindividual_variation=INTERINDIVIDUAL_VARIATION Starting variability between individuals. [default: 0.01] --delta=DELTA Starting delta parameter for Brownian motion and Ornstein-Uhlenbeck processes. A higher number indicates more variability over time. [default: 0.25] -l L, --L=L Starting lambda parameter for Ornstein-Uhlenbeck processes. A higher number indicates a greater tendancy to revert to the mean value. [default: 0.2] --fixed_start_pos=FIXED_START_POS Starting x,y,z position for all points, as comma separated floating point values, e.g. 0.0,0.1,0.2. If not supplied, starting positions will be randomized based on the interindividual_variation parameter [default: none] ```


Updated README.md to display status of Travis CI engine, when setup for zaneveld/karenina

Such as the Qiime2 example:

Image


Updated individual import files to accommodate package use.

from individual import Individual

    to -->

from karenina.individual import Individual

This allows the user to use the console command following install:

karenina -o ./current_run

Rather than navigating to the location of spatial_ornstein_uhlenbeck.py and executing:

python spatial_ornstein_uhlenbeck.py -o ./current_run

22

Fixed fit_timeseries.py cogent error, updated to use optparse, could not successfully set up Travis CI without taking care of this at the same time.


Fixed python2 / python3 issue where a function in scipy would provide an error for zip datatypes:

local_min_bounds = zip(xmin.tolist(),xmax.tolist())

    to--> 

local_min_bounds = list(zip(xmin.tolist(),xmax.tolist()))

and

for scale,data in self.BasicNormalData.iteritems():

    to-->

for scale,data in self.BasicNormalData.items():

Travis CI had issues with importing "exists", so this check was temporarily removed, added a #TODO:

if exists(opts.output):
    print("Output saved to: "+str(opts.output))

    to-->

#TODO: Make if not exists output directory
#if exists(opts.output):
#    print("Output saved to: " +str(opts.output))

Temporarily omitted test_fit_timeseries_recovers_OU_params in test_fit_timeseries.py because the 300 iterations would cause TravisCI to time out. Log ouput snippet displays that the timeout occurred after fifty minutes of run time.

n_timepoints:  265

The job exceeded the maximum time limit for jobs, and has been terminated.

Image


Created manifest.in, requirements.txt, setup.cfg as accessory files for build setup.

Created setup.py, configured to download the package data/perturbations file, and scripts.


Usage & Installation: Navigate to the cloned repository, and execute the setup.py script with the parameter install:

Expand

### python setup.py install ```bash running install running bdist_egg running egg_info creating karenina_test.egg-info writing karenina_test.egg-info\PKG-INFO writing dependency_links to karenina_test.egg-info\dependency_links.txt writing entry points to karenina_test.egg-info\entry_points.txt writing top-level names to karenina_test.egg-info\top_level.txt writing manifest file 'karenina_test.egg-info\SOURCES.txt' reading manifest file 'karenina_test.egg-info\SOURCES.txt' reading manifest template 'MANIFEST.in' writing manifest file 'karenina_test.egg-info\SOURCES.txt' installing library code to build\bdist.win-amd64\egg running install_lib running build_py creating build creating build\lib creating build\lib\karenina copying karenina\experiment.py -> build\lib\karenina copying karenina\fit_timeseries.py -> build\lib\karenina copying karenina\individual.py -> build\lib\karenina copying karenina\perturbation.py -> build\lib\karenina copying karenina\process.py -> build\lib\karenina copying karenina\spatial_ornstein_uhlenbeck.py -> build\lib\karenina copying karenina\visualization.py -> build\lib\karenina copying karenina\__init__.py -> build\lib\karenina creating build\bdist.win-amd64 creating build\bdist.win-amd64\egg creating build\bdist.win-amd64\egg\karenina copying build\lib\karenina\experiment.py -> build\bdist.win-amd64\egg\karenina copying build\lib\karenina\fit_timeseries.py -> build\bdist.win-amd64\egg\karenina copying build\lib\karenina\individual.py -> build\bdist.win-amd64\egg\karenina copying build\lib\karenina\perturbation.py -> build\bdist.win-amd64\egg\karenina copying build\lib\karenina\process.py -> build\bdist.win-amd64\egg\karenina copying build\lib\karenina\spatial_ornstein_uhlenbeck.py -> build\bdist.win-amd64\egg\karenina copying build\lib\karenina\visualization.py -> build\bdist.win-amd64\egg\karenina copying build\lib\karenina\__init__.py -> build\bdist.win-amd64\egg\karenina byte-compiling build\bdist.win-amd64\egg\karenina\experiment.py to experiment.cpython-36.pyc byte-compiling build\bdist.win-amd64\egg\karenina\fit_timeseries.py to fit_timeseries.cpython-36.pyc byte-compiling build\bdist.win-amd64\egg\karenina\individual.py to individual.cpython-36.pyc byte-compiling build\bdist.win-amd64\egg\karenina\perturbation.py to perturbation.cpython-36.pyc byte-compiling build\bdist.win-amd64\egg\karenina\process.py to process.cpython-36.pyc byte-compiling build\bdist.win-amd64\egg\karenina\spatial_ornstein_uhlenbeck.py to spatial_ornstein_uhlenbeck.cpython-36.pyc byte-compiling build\bdist.win-amd64\egg\karenina\visualization.py to visualization.cpython-36.pyc byte-compiling build\bdist.win-amd64\egg\karenina\__init__.py to __init__.cpython-36.pyc installing package data to build\bdist.win-amd64\egg running install_data creating build\bdist.win-amd64\egg\data creating build\bdist.win-amd64\egg\data\perturbations copying data\perturbations\add_x_mu_high.csv -> build\bdist.win-amd64\egg\data\perturbations copying data\perturbations\all_perturbations.tsv -> build\bdist.win-amd64\egg\data\perturbations copying data\perturbations\double_xyz_delta.csv -> build\bdist.win-amd64\egg\data\perturbations copying data\perturbations\double_z_delta.csv -> build\bdist.win-amd64\egg\data\perturbations copying data\perturbations\README.txt -> build\bdist.win-amd64\egg\data\perturbations copying data\perturbations\set_x_lambda_high.csv -> build\bdist.win-amd64\egg\data\perturbations copying data\perturbations\set_x_lambda_medium.csv -> build\bdist.win-amd64\egg\data\perturbations copying data\perturbations\set_x_lambda_small.csv -> build\bdist.win-amd64\egg\data\perturbations copying data\perturbations\set_x_mu_high.csv -> build\bdist.win-amd64\egg\data\perturbations copying data\perturbations\set_xyz_mu_high.csv -> build\bdist.win-amd64\egg\data\perturbations copying data\perturbations\set_xyz_mu_low.csv -> build\bdist.win-amd64\egg\data\perturbations copying data\perturbations\set_y_lambda_high.csv -> build\bdist.win-amd64\egg\data\perturbations copying data\perturbations\set_yz_lambda_high.csv -> build\bdist.win-amd64\egg\data\perturbations copying data\perturbations\set_z_lambda_zero.csv -> build\bdist.win-amd64\egg\data\perturbations copying data\perturbations\x_mu_low.csv -> build\bdist.win-amd64\egg\data\perturbations copying data\perturbations\xyz_lambda_low.csv -> build\bdist.win-amd64\egg\data\perturbations copying data\perturbations\xyz_lambda_zero.csv -> build\bdist.win-amd64\egg\data\perturbations copying data\perturbations\xyz_lambda_zero_alt_format.csv -> build\bdist.win-amd64\egg\data\perturbations copying data\perturbations\y_lambda_medium.csv -> build\bdist.win-amd64\egg\data\perturbations copying data\perturbations\yz_lambda_medium.csv -> build\bdist.win-amd64\egg\data\perturbations creating build\bdist.win-amd64\egg\EGG-INFO copying karenina_test.egg-info\PKG-INFO -> build\bdist.win-amd64\egg\EGG-INFO copying karenina_test.egg-info\SOURCES.txt -> build\bdist.win-amd64\egg\EGG-INFO copying karenina_test.egg-info\dependency_links.txt -> build\bdist.win-amd64\egg\EGG-INFO copying karenina_test.egg-info\entry_points.txt -> build\bdist.win-amd64\egg\EGG-INFO copying karenina_test.egg-info\top_level.txt -> build\bdist.win-amd64\egg\EGG-INFO zip_safe flag not set; analyzing archive contents... karenina.__pycache__.spatial_ornstein_uhlenbeck.cpython-36: module references __file__ creating dist creating 'dist\karenina_test-0.0.1-py3.6.egg' and adding 'build\bdist.win-amd64\egg' to it removing 'build\bdist.win-amd64\egg' (and everything under it) Processing karenina_test-0.0.1-py3.6.egg creating c:\users\ripti\anaconda3\lib\site-packages\karenina_test-0.0.1-py3.6.egg Extracting karenina_test-0.0.1-py3.6.egg to c:\users\ripti\anaconda3\lib\site-packages Adding karenina-test 0.0.1 to easy-install.pth file Installing karenina-script.py script to C:\Users\Ripti\Anaconda3\Scripts Installing karenina.exe script to C:\Users\Ripti\Anaconda3\Scripts Installed c:\users\ripti\anaconda3\lib\site-packages\karenina_test-0.0.1-py3.6.egg Processing dependencies for karenina-test==0.0.1 Finished processing dependencies for karenina-test==0.0.1 ```

Usage following installation:

Expand

### karenina -o ./test_run ```bash {'output': './test_run', 'pert_file_path': 'C:\\Users\\Ripti\\Anaconda3\\lib\\site-packages\\karenina_test-0.0.1-py3.6.egg\\data\\perturbations\\xyz_lambda_zero.csv', 'treatment_names': 'control,destabilizing_treatment', 'n_individuals': '35,35', 'n_timepoints': 10, 'perturbation_timepoint': 5, 'perturbation_duration': 100, 'interindividual_variation': 0.01, 'delta': 0.25, 'L': 0.2, 'fixed_start_pos': None} params lambda 0 update_mode replace axes x y z Raw number of individuals from user: 35,35 n_individuals.split(',') ['35', '35'] **Experiment Design** treatments: ['control', 'destabilizing_treatment'] n_individuals: [35, 35] interindividual_variation 0.01 treatment_effects: [[], [{'start': 5, 'end': 105, 'params': {'lambda': 0.0}, 'update_mode': 'replace', 'axes': ['x', 'y', 'z']}]] individual_base_params: {'lambda': 0.2, 'delta': 0.25, 'interindividual_variation': 0.01} treatment_names: ['control', 'destabilizing_treatment'] n_individuals: [35, 35] treatment_params: [[], [{'start': 5, 'end': 105, 'params': {'lambda': 0.0}, 'update_mode': 'replace', 'axes': ['x', 'y', 'z']}]] [35, 35] ['control', 'destabilizing_treatment'] [[], [{'start': 5, 'end': 105, 'params': {'lambda': 0.0}, 'update_mode': 'replace', 'axes': ['x', 'y', 'z']}]] ['control', 'destabilizing_treatment'] {'treatment_name': 'control', 'n_individuals': 35} start_coord: -0.004348116398810584 curr_params['mu'] -0.004348116398810584 start_coord: 0.006009581228813295 curr_params['mu'] 0.006009581228813295 start_coord: 0.006792901950451617 curr_params['mu'] 0.006792901950451617 start_coord: -0.009725834226746865 curr_params['mu'] -0.009725834226746865 start_coord: -0.0006283269483692888 curr_params['mu'] -0.0006283269483692888 start_coord: 0.009010605774671606 curr_params['mu'] 0.009010605774671606 start_coord: 0.009180989056326184 curr_params['mu'] 0.009180989056326184 start_coord: 0.004140893064358304 curr_params['mu'] 0.004140893064358304 start_coord: -0.007911724462033658 curr_params['mu'] -0.007911724462033658 start_coord: 0.004803743794482323 curr_params['mu'] 0.004803743794482323 start_coord: 0.005731717711650002 curr_params['mu'] 0.005731717711650002 start_coord: -0.001991854128988606 curr_params['mu'] -0.001991854128988606 start_coord: -0.009009258419984649 curr_params['mu'] -0.009009258419984649 start_coord: -0.007104598705715186 curr_params['mu'] -0.007104598705715186 start_coord: 0.00040107225754031805 curr_params['mu'] 0.00040107225754031805 start_coord: 0.009028192668459082 curr_params['mu'] 0.009028192668459082 start_coord: -0.009126525396155995 curr_params['mu'] -0.009126525396155995 start_coord: -0.00211916476737422 curr_params['mu'] -0.00211916476737422 start_coord: 0.0018239385989276102 curr_params['mu'] 0.0018239385989276102 start_coord: 0.0051245942304176855 curr_params['mu'] 0.0051245942304176855 start_coord: 0.004130614808038906 curr_params['mu'] 0.004130614808038906 start_coord: 0.004422553664122646 curr_params['mu'] 0.004422553664122646 start_coord: 0.008900240764048804 curr_params['mu'] 0.008900240764048804 start_coord: -0.00883393915075497 curr_params['mu'] -0.00883393915075497 start_coord: -0.005688164989323048 curr_params['mu'] -0.005688164989323048 start_coord: -0.005527361247882263 curr_params['mu'] -0.005527361247882263 start_coord: 0.000376441979205 curr_params['mu'] 0.000376441979205 start_coord: -0.003388181561660195 curr_params['mu'] -0.003388181561660195 start_coord: 0.009223645041869068 curr_params['mu'] 0.009223645041869068 start_coord: 0.008348673228703717 curr_params['mu'] 0.008348673228703717 start_coord: 0.009216630892606213 curr_params['mu'] 0.009216630892606213 start_coord: -0.004358615086233673 curr_params['mu'] -0.004358615086233673 start_coord: -0.006839329229480431 curr_params['mu'] -0.006839329229480431 start_coord: 0.008354247601959098 curr_params['mu'] 0.008354247601959098 start_coord: -0.00535894335421675 curr_params['mu'] -0.00535894335421675 start_coord: -0.002680518418866482 curr_params['mu'] -0.002680518418866482 start_coord: -0.007310429054467875 curr_params['mu'] -0.007310429054467875 start_coord: -0.00955632599365829 curr_params['mu'] -0.00955632599365829 start_coord: 0.007767764550120904 curr_params['mu'] 0.007767764550120904 start_coord: 0.0063473806786289114 curr_params['mu'] 0.0063473806786289114 start_coord: 0.0061126875703806085 curr_params['mu'] 0.0061126875703806085 start_coord: -0.0029728908875946082 curr_params['mu'] -0.0029728908875946082 start_coord: 0.009788374227122584 curr_params['mu'] 0.009788374227122584 start_coord: 0.008617870586885077 curr_params['mu'] 0.008617870586885077 start_coord: 0.00899884348712957 curr_params['mu'] 0.00899884348712957 start_coord: -0.007116402666938873 curr_params['mu'] -0.007116402666938873 start_coord: -0.006566236026294216 curr_params['mu'] -0.006566236026294216 start_coord: -0.005180877968794127 curr_params['mu'] -0.005180877968794127 start_coord: 0.009943440301489184 curr_params['mu'] 0.009943440301489184 start_coord: -0.009727381450292914 curr_params['mu'] -0.009727381450292914 start_coord: 0.0008457310527460949 curr_params['mu'] 0.0008457310527460949 start_coord: -0.0038120795894035766 curr_params['mu'] -0.0038120795894035766 start_coord: -0.0016876656574669148 curr_params['mu'] -0.0016876656574669148 start_coord: 0.00975614915010091 curr_params['mu'] 0.00975614915010091 start_coord: -0.0017533070580887289 curr_params['mu'] -0.0017533070580887289 start_coord: -0.003630816063034088 curr_params['mu'] -0.003630816063034088 start_coord: -0.00440626545353713 curr_params['mu'] -0.00440626545353713 start_coord: -0.0014076757153801745 curr_params['mu'] -0.0014076757153801745 start_coord: -0.001106653386428209 curr_params['mu'] -0.001106653386428209 start_coord: -0.007574367323867701 curr_params['mu'] -0.007574367323867701 start_coord: 0.008685987407702501 curr_params['mu'] 0.008685987407702501 start_coord: -0.008107269142853377 curr_params['mu'] -0.008107269142853377 start_coord: 0.008293066715914763 curr_params['mu'] 0.008293066715914763 start_coord: 0.009701954989434436 curr_params['mu'] 0.009701954989434436 start_coord: -0.0003893656081111385 curr_params['mu'] -0.0003893656081111385 start_coord: -0.000976217007570137 curr_params['mu'] -0.000976217007570137 start_coord: 0.0006669772364514759 curr_params['mu'] 0.0006669772364514759 start_coord: -0.007315618307638252 curr_params['mu'] -0.007315618307638252 start_coord: 0.007279374543863557 curr_params['mu'] 0.007279374543863557 start_coord: -0.0032519610841170435 curr_params['mu'] -0.0032519610841170435 start_coord: -0.004460228262776644 curr_params['mu'] -0.004460228262776644 start_coord: 0.009554634824394009 curr_params['mu'] 0.009554634824394009 start_coord: 0.0011039926145154722 curr_params['mu'] 0.0011039926145154722 start_coord: 0.00031812265607788825 curr_params['mu'] 0.00031812265607788825 start_coord: 0.00033542475133839565 curr_params['mu'] 0.00033542475133839565 start_coord: -0.007207292495929254 curr_params['mu'] -0.007207292495929254 start_coord: 0.00803698801693454 curr_params['mu'] 0.00803698801693454 start_coord: 0.001314748466980169 curr_params['mu'] 0.001314748466980169 start_coord: 0.005861420783673259 curr_params['mu'] 0.005861420783673259 start_coord: 0.00043637060856164037 curr_params['mu'] 0.00043637060856164037 start_coord: 0.00469107216894165 curr_params['mu'] 0.00469107216894165 start_coord: 0.008419393729667391 curr_params['mu'] 0.008419393729667391 start_coord: 0.001535325458911294 curr_params['mu'] 0.001535325458911294 start_coord: -0.009021590539721973 curr_params['mu'] -0.009021590539721973 start_coord: -0.0011051216799775876 curr_params['mu'] -0.0011051216799775876 start_coord: -0.0011045211595481265 curr_params['mu'] -0.0011045211595481265 start_coord: 0.0061873748487679394 curr_params['mu'] 0.0061873748487679394 start_coord: -0.004536599297488229 curr_params['mu'] -0.004536599297488229 start_coord: -0.009897996676650467 curr_params['mu'] -0.009897996676650467 start_coord: 0.0073440449814233125 curr_params['mu'] 0.0073440449814233125 start_coord: 0.007827999819485724 curr_params['mu'] 0.007827999819485724 start_coord: -0.007611046449178605 curr_params['mu'] -0.007611046449178605 start_coord: -0.0018362590036603323 curr_params['mu'] -0.0018362590036603323 start_coord: -0.002084255661397587 curr_params['mu'] -0.002084255661397587 start_coord: 0.007735349022121829 curr_params['mu'] 0.007735349022121829 start_coord: 0.005127097855198408 curr_params['mu'] 0.005127097855198408 start_coord: -0.007971599472801905 curr_params['mu'] -0.007971599472801905 start_coord: 0.000857759600341228 curr_params['mu'] 0.000857759600341228 start_coord: 0.003743753076420562 curr_params['mu'] 0.003743753076420562 start_coord: -0.0023152623793498916 curr_params['mu'] -0.0023152623793498916 start_coord: 0.005635888942857148 curr_params['mu'] 0.005635888942857148 start_coord: -0.002934795985269636 curr_params['mu'] -0.002934795985269636 start_coord: 0.004467195987989252 curr_params['mu'] 0.004467195987989252 start_coord: 0.004603884780256315 curr_params['mu'] 0.004603884780256315 start_coord: -0.0027630634219689833 curr_params['mu'] -0.0027630634219689833 {'treatment_name': 'destabilizing_treatment', 'n_individuals': 35} start_coord: -0.005612290540786853 curr_params['mu'] -0.005612290540786853 start_coord: 0.009153062045516526 curr_params['mu'] 0.009153062045516526 start_coord: 0.0072335557271884015 curr_params['mu'] 0.0072335557271884015 start_coord: 0.002654010771013822 curr_params['mu'] 0.002654010771013822 start_coord: 0.001312962251729639 curr_params['mu'] 0.001312962251729639 start_coord: 0.0005301077028258683 curr_params['mu'] 0.0005301077028258683 start_coord: -0.0019577139481685114 curr_params['mu'] -0.0019577139481685114 start_coord: -0.008424802092876379 curr_params['mu'] -0.008424802092876379 start_coord: 0.005276222946664686 curr_params['mu'] 0.005276222946664686 start_coord: 0.0061874006718314264 curr_params['mu'] 0.0061874006718314264 start_coord: -3.578552347591302e-05 curr_params['mu'] -3.578552347591302e-05 start_coord: 0.0005026804481352376 curr_params['mu'] 0.0005026804481352376 start_coord: -0.0034696259456003186 curr_params['mu'] -0.0034696259456003186 start_coord: 0.0004437675889918391 curr_params['mu'] 0.0004437675889918391 start_coord: -0.006796456178265154 curr_params['mu'] -0.006796456178265154 start_coord: -0.00947879705412679 curr_params['mu'] -0.00947879705412679 start_coord: 0.006527341726224953 curr_params['mu'] 0.006527341726224953 start_coord: -0.0038742494219376747 curr_params['mu'] -0.0038742494219376747 start_coord: -0.006836686453171717 curr_params['mu'] -0.006836686453171717 start_coord: -0.008379996192051724 curr_params['mu'] -0.008379996192051724 start_coord: -0.008711468705997106 curr_params['mu'] -0.008711468705997106 start_coord: -0.008991313952286811 curr_params['mu'] -0.008991313952286811 start_coord: 0.0015964646134322424 curr_params['mu'] 0.0015964646134322424 start_coord: 0.005728582746706037 curr_params['mu'] 0.005728582746706037 start_coord: -0.005448179178589465 curr_params['mu'] -0.005448179178589465 start_coord: -0.0011936506076866361 curr_params['mu'] -0.0011936506076866361 start_coord: 0.00912163941206295 curr_params['mu'] 0.00912163941206295 start_coord: -0.0015993803066177037 curr_params['mu'] -0.0015993803066177037 start_coord: -0.008839474569235348 curr_params['mu'] -0.008839474569235348 start_coord: 0.0001047166154671153 curr_params['mu'] 0.0001047166154671153 start_coord: 0.007196572545584121 curr_params['mu'] 0.007196572545584121 start_coord: 0.0063082572780324125 curr_params['mu'] 0.0063082572780324125 start_coord: 0.009788424349101352 curr_params['mu'] 0.009788424349101352 start_coord: -0.006964852240547499 curr_params['mu'] -0.006964852240547499 start_coord: -0.006722540616767494 curr_params['mu'] -0.006722540616767494 start_coord: 0.0009582115534043467 curr_params['mu'] 0.0009582115534043467 start_coord: -0.009967918467244912 curr_params['mu'] -0.009967918467244912 start_coord: 0.009402926973831471 curr_params['mu'] 0.009402926973831471 start_coord: 0.008119927434651047 curr_params['mu'] 0.008119927434651047 start_coord: -0.008550254680511786 curr_params['mu'] -0.008550254680511786 start_coord: -0.002508860249201268 curr_params['mu'] -0.002508860249201268 start_coord: -0.00589272113424004 curr_params['mu'] -0.00589272113424004 start_coord: -0.002846313410301564 curr_params['mu'] -0.002846313410301564 start_coord: 0.008750648695909097 curr_params['mu'] 0.008750648695909097 start_coord: -0.009573915446474734 curr_params['mu'] -0.009573915446474734 start_coord: 0.0033746253277622375 curr_params['mu'] 0.0033746253277622375 start_coord: -0.0058566564551207345 curr_params['mu'] -0.0058566564551207345 start_coord: -0.0012832294676313571 curr_params['mu'] -0.0012832294676313571 start_coord: 0.006550849743391893 curr_params['mu'] 0.006550849743391893 start_coord: 0.008757659505994726 curr_params['mu'] 0.008757659505994726 start_coord: 0.003749217962563227 curr_params['mu'] 0.003749217962563227 start_coord: -0.0025963605878398612 curr_params['mu'] -0.0025963605878398612 start_coord: 0.008866735612091167 curr_params['mu'] 0.008866735612091167 start_coord: 0.008326764308000778 curr_params['mu'] 0.008326764308000778 start_coord: -0.005007777071865924 curr_params['mu'] -0.005007777071865924 start_coord: 0.001701014509788339 curr_params['mu'] 0.001701014509788339 start_coord: -0.0007523961200704444 curr_params['mu'] -0.0007523961200704444 start_coord: 0.0022593170810543575 curr_params['mu'] 0.0022593170810543575 start_coord: 0.008830305768288842 curr_params['mu'] 0.008830305768288842 start_coord: 0.008333968698879715 curr_params['mu'] 0.008333968698879715 start_coord: -0.009965273472186665 curr_params['mu'] -0.009965273472186665 start_coord: 0.0029075313527975343 curr_params['mu'] 0.0029075313527975343 start_coord: 0.005941224472970366 curr_params['mu'] 0.005941224472970366 start_coord: 0.007088044239492053 curr_params['mu'] 0.007088044239492053 start_coord: -0.00804463534710658 curr_params['mu'] -0.00804463534710658 start_coord: 0.003296794274256294 curr_params['mu'] 0.003296794274256294 start_coord: -0.0078238276560989 curr_params['mu'] -0.0078238276560989 start_coord: 0.005901251511450004 curr_params['mu'] 0.005901251511450004 start_coord: 0.0038725298081588025 curr_params['mu'] 0.0038725298081588025 start_coord: -0.00638772162174692 curr_params['mu'] -0.00638772162174692 start_coord: -0.009260952603752919 curr_params['mu'] -0.009260952603752919 start_coord: -0.0051009512094158695 curr_params['mu'] -0.0051009512094158695 start_coord: 0.003114298796680428 curr_params['mu'] 0.003114298796680428 start_coord: -0.009120420374500162 curr_params['mu'] -0.009120420374500162 start_coord: 0.003969373141355206 curr_params['mu'] 0.003969373141355206 start_coord: -0.007242151546483841 curr_params['mu'] -0.007242151546483841 start_coord: 0.0001331487713986479 curr_params['mu'] 0.0001331487713986479 start_coord: 0.008402934687754849 curr_params['mu'] 0.008402934687754849 start_coord: 0.006286723991192269 curr_params['mu'] 0.006286723991192269 start_coord: 0.005425378631713682 curr_params['mu'] 0.005425378631713682 start_coord: -0.007223717376701005 curr_params['mu'] -0.007223717376701005 start_coord: 0.008201022126939498 curr_params['mu'] 0.008201022126939498 start_coord: -0.0022595174924008757 curr_params['mu'] -0.0022595174924008757 start_coord: -0.005789588419416407 curr_params['mu'] -0.005789588419416407 start_coord: -0.009630846141517206 curr_params['mu'] -0.009630846141517206 start_coord: -0.009852086136836889 curr_params['mu'] -0.009852086136836889 start_coord: -0.004269500107858131 curr_params['mu'] -0.004269500107858131 start_coord: -0.007427551736042379 curr_params['mu'] -0.007427551736042379 start_coord: -0.00088534629759355 curr_params['mu'] -0.00088534629759355 start_coord: -0.006023866423843123 curr_params['mu'] -0.006023866423843123 start_coord: -0.00925451292860161 curr_params['mu'] -0.00925451292860161 start_coord: -0.006437391361032883 curr_params['mu'] -0.006437391361032883 start_coord: 0.004021149105676731 curr_params['mu'] 0.004021149105676731 start_coord: 0.0068501511807856534 curr_params['mu'] 0.0068501511807856534 start_coord: -0.008006059157888091 curr_params['mu'] -0.008006059157888091 start_coord: -0.0038478181584205217 curr_params['mu'] -0.0038478181584205217 start_coord: 0.006808287020541177 curr_params['mu'] 0.006808287020541177 start_coord: 0.007967493868115471 curr_params['mu'] 0.007967493868115471 start_coord: -0.002609297243275366 curr_params['mu'] -0.002609297243275366 start_coord: 0.009524316980773979 curr_params['mu'] 0.009524316980773979 start_coord: 0.009240079830606792 curr_params['mu'] 0.009240079830606792 start_coord: 0.005004896059906081 curr_params['mu'] 0.005004896059906081 start_coord: -0.0060116855620147855 curr_params['mu'] -0.0060116855620147855 start_coord: 4.300114798785337e-05 curr_params['mu'] 4.300114798785337e-05 start_coord: -0.009246736470123662 curr_params['mu'] -0.009246736470123662 raw_perturbation_info: [] raw_perturbation_info: [{'start': 5, 'end': 105, 'params': {'lambda': 0.0}, 'update_mode': 'replace', 'axes': ['x', 'y', 'z']}] params: {'start': 5, 'end': 105, 'params': {'lambda': 0.0}, 'update_mode': 'replace', 'axes': ['x', 'y', 'z']} Simulating timestep: 0 Simulating timestep: 1 Simulating timestep: 2 Simulating timestep: 3 Simulating timestep: 4 Simulating timestep: 5 Simulating timestep: 6 Simulating timestep: 7 Simulating timestep: 8 Simulating timestep: 9 individuals: [, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ] Individual colors: ['fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'fuchsia', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan', 'cyan'] Movie raw data: [array([[-0.00434812, -0.00434812, -0.00748151, -0.00625136, 0.09518508, 0.12270169, 0.04472921, -0.00521175, 0.04734449, 0.12703411, 0.1347108 ], [ 0.00600958, 0.00600958, 0.0725725 , 0.04555665, 0.03079691, 0.03150236, 0.08295665, 0.07139917, 0.20294033, 0.19268367, 0.13252317], [ 0.0067929 , 0.0067929 , 0.09187575, 0.07559974, 0.13531996, 0.06600237, 0.02236181, -0.04110591, -0.0605537 , -0.01331186, 0.08632895]]), array([[-0.00972583, -0.00972583, 0.02663714, -0.00213924, 0.02226219, 0.01672778, -0.05498955, -0.16901667, -0.1682914 , -0.20523201, -0.04357953], [-0.00062833, -0.00062833, 0.042454 , -0.04582328, -0.11074878, -0.14353446, -0.12767032, -0.06894033, -0.02631405, 0.07169872, 0.03048639], [ 0.00901061, 0.00901061, 0.02805093, -0.00952379, -0.08560075, -0.08093505, -0.07656305, -0.05614142, -0.02456561, -0.15626331, -0.17068932]]), array([[ 0.00918099, 0.00918099, 0.03867238, 0.04947902, 0.13540103, 0.0887438 , 0.04565812, 0.02524382, -0.01109078, -0.0312559 , 0.06694313], [ 0.00414089, 0.00414089, -0.13091119, -0.09149028, -0.04249001, 0.09031345, 0.04343057, 0.11429511, -0.02878122, 0.03339145, -0.08274195], [-0.00791172, -0.00791172, -0.08471121, -0.13688744, -0.14548848, -0.12316759, -0.18368184, -0.07760941, -0.09693507, -0.09158667, -0.08183841]]), array([[ 0.00480374, 0.00480374, 0.04515487, -0.01090705, -0.00523356, 0.10976878, 0.10628723, 0.15064336, 0.06386217, 0.06992943, 0.1140061 ], [ 0.00573172, 0.00573172, 0.02105913, -0.027802 , 0.01162587, -0.09411177, -0.15386623, -0.15853713, -0.04125237, 0.05054221, 0.02861324], [-0.00199185, -0.00199185, -0.04025324, -0.01865435, -0.02833196, 0.01994519, -0.02681576, -0.0956776 , -0.04885357, -0.00374612, 0.01078553]]), array([[-0.00900926, -0.00900926, 0.01440636, 0.05948013, 0.11551148, 0.09025922, 0.09050295, -0.01055078, -0.02777734, -0.17407832, -0.2504525 ], [-0.0071046 , -0.0071046 , -0.0487844 , -0.11283429, -0.05982286, -0.00576283, 0.00263717, 0.01720317, -0.03879465, -0.08939699, -0.01850261], [ 0.00040107, 0.00040107, 0.11176971, 0.03156742, 0.07887174, 0.02916031, 0.09204148, 0.11175813, 0.16370415, 0.05463278, 0.01629673]]), array([[ 0.00902819, 0.00902819, 0.084798 , 0.06877538, 0.04806908, 0.00936027, -0.11990143, -0.0363257 , -0.06889969, -0.18279521, -0.06199605], [-0.00912653, -0.00912653, -0.0019251 , -0.04809725, -0.01171071, 0.01754733, -0.03756447, 0.02313004, 0.04408251, -0.00552235, -0.095893 ], [-0.00211916, -0.00211916, -0.03837756, -0.07336789, -0.01314116, 0.03317112, 0.02209018, -0.00413247, -0.02307332, -0.10076652, -0.09886303]]), array([[ 0.00182394, 0.00182394, 0.10150867, 0.07052253, 0.03318659, 0.10226318, 0.02253845, -0.05615988, -0.04282811, -0.05479113, -0.08269856], [ 0.00512459, 0.00512459, 0.02998901, 0.03471306, 0.06831345, 0.11819633, 0.10264367, 0.13065608, 0.17537246, 0.14609517, 0.18775609], [ 0.00413061, 0.00413061, -0.1004807 , -0.16474933, -0.0533182 , -0.08178209, -0.16464891, -0.15842866, -0.1079113 , -0.10077198, 0.04425319]]), array([[ 0.00442255, 0.00442255, 0.1219972 , 0.16946321, 0.21451272, 0.24604949, 0.31177584, 0.24613315, 0.21204728, 0.12568162, 0.08081434], [ 0.00890024, 0.00890024, -0.07781938, -0.01804598, -0.0921012 , -0.16131496, -0.15125735, -0.19722663, -0.10839322, -0.07382465, -0.06546395], [-0.00883394, -0.00883394, -0.00360634, 0.02275405, 0.11803967, 0.02132146, 0.09529159, 0.14550304, 0.1457584 , 0.26121531, 0.18215006]]), array([[-0.00568816, -0.00568816, -0.04804361, -0.02987922, -0.01775515, -0.13493884, -0.08430937, -0.10773371, -0.15494824, -0.22919749, -0.18776894], [-0.00552736, -0.00552736, 0.01006766, 0.06774318, 0.09543269, -0.00455903, 0.08761708, 0.10719763, 0.07089654, 0.05526346, -0.04636983], [ 0.00037644, 0.00037644, -0.05894248, -0.07115043, -0.02910216, -0.00452975, -0.05799024, 0.00723501, 0.05799101, 0.07723913, 0.02132214]]), array([[-0.00338818, -0.00338818, 0.01001867, 0.03457401, -0.16009341, -0.22446199, -0.24592874, -0.21057913, -0.27985547, -0.26199267, -0.3176194 ], [ 0.00922365, 0.00922365, 0.00887845, 0.00904231, -0.03771182, 0.03779964, 0.16249192, 0.09704837, 0.10540771, 0.14643913, 0.07235127], [ 0.00834867, 0.00834867, -0.08536013, -0.10393119, -0.10223106, -0.03813511, -0.0514642 , 0.07893607, 0.06711149, 0.01501982, -0.05444135]]), array([[ 0.00921663, 0.00921663, 0.04100843, -0.04571829, 0.03365013, 0.07804377, 0.00548757, -0.09204541, -0.0237686 , -0.10853709, -0.09137855], [-0.00435862, -0.00435862, -0.05277559, -0.02815961, -0.02500375, 0.01296598, 0.00945917, 0.08660294, -0.00030672, 0.05651549, -0.00260831], [-0.00683933, -0.00683933, -0.08702339, 0.00154644, 0.01914068, 0.02896009, 0.08245431, 0.06755677, -0.03815706, 0.05050089, 0.12991092]]), array([[ 0.00835425, 0.00835425, 0.0126516 , 0.05398483, -0.01533231, 0.00658938, -0.00580267, 0.0579655 , 0.15267084, 0.27935871, 0.18652126], [-0.00535894, -0.00535894, -0.04002829, -0.01829217, -0.03991801, -0.1871933 , -0.25182541, -0.18504485, -0.1622542 , -0.14886882, -0.02814186], [-0.00268052, -0.00268052, 0.00607836, -0.10618562, -0.03522949, 0.03978801, 0.06166715, 0.10601372, 0.07632216, 0.08835732, 0.13866483]]), array([[-0.00731043, -0.00731043, -0.12413929, -0.21987179, -0.26665127, -0.31414058, -0.19198148, -0.25794785, -0.17263184, -0.22246692, -0.23559918], [-0.00955633, -0.00955633, 0.01979338, -0.06907346, 0.00626864, -0.01674916, -0.00536247, -0.0015732 , -0.04506583, -0.03275049, 0.02005869], [ 0.00776776, 0.00776776, 0.06820889, 0.06835545, -0.14534741, -0.13390797, -0.06298558, -0.14258429, -0.08101477, -0.00572934, 0.04098829]]), array([[ 0.00634738, 0.00634738, -0.09654581, -0.10921325, -0.10499474, -0.06062586, -0.06429664, 0.00604661, 0.01741392, -0.12914377, -0.14481653], [ 0.00611269, 0.00611269, 0.05461147, 0.01313051, -0.02700722, 0.00271974, 0.011113 , 0.00577065, 0.03723635, -0.11460605, -0.1480017 ], [-0.00297289, -0.00297289, 0.04728288, -0.07375435, -0.05718059, -0.07766141, 0.04824292, 0.0106806 , 0.06487847, -0.00225538, -0.03233085]]), array([[ 9.78837423e-03, 9.78837423e-03, -1.63222147e-01, -1.35268230e-01, -8.78620156e-02, -1.60700973e-03, -9.16255973e-02, -3.36463182e-02, -8.69881601e-02, -1.07161242e-01, 1.96235058e-03], [ 8.61787059e-03, 8.61787059e-03, -8.42830995e-02, 2.63428485e-02, 1.79007969e-04, -1.47585054e-01, -1.74940623e-01, -7.06992396e-02, -1.01494019e-01, -1.16310866e-01, -6.47719729e-02], [ 8.99884349e-03, 8.99884349e-03, -1.44193534e-01, -1.89965714e-01, -1.12956576e-01, -5.08352595e-02, -8.45928205e-03, -3.36688881e-03, 4.19580861e-02, 1.89918026e-01, 1.27874944e-01]]), array([[-0.0071164 , -0.0071164 , 0.06950856, -0.04581878, 0.00409398, -0.0281593 , -0.02085914, 0.00993953, 0.10240722, 0.10780674, 0.11314313], [-0.00656624, -0.00656624, 0.01777742, 0.08645976, 0.05076097, 0.0209656 , 0.01370594, 0.01961925, -0.09703407, -0.10303664, -0.0276324 ], [-0.00518088, -0.00518088, -0.08159055, -0.08118721, 0.04631731, 0.10676499, 0.0597908 , 0.04948251, 0.09041251, 0.07691953, 0.04039909]]), array([[ 0.00994344, 0.00994344, 0.0147237 , -0.03018651, -0.03125008, 0.03272272, -0.05155221, -0.01307751, 0.04182477, 0.06937265, 0.08991855], [-0.00972738, -0.00972738, -0.03727166, -0.05645189, -0.08998668, 0.02935737, -0.10944235, -0.13103063, -0.07490229, -0.03801077, -0.04972561], [ 0.00084573, 0.00084573, -0.13501595, -0.19562962, -0.0986256 , -0.02244447, 0.02347214, 0.02980026, -0.01479432, -0.03289828, 0.04057251]]), array([[-0.00381208, -0.00381208, 0.00275657, 0.05153711, 0.01916135, -0.00308008, -0.11104287, -0.1433682 , -0.13895407, -0.04812635, -0.11766046], [-0.00168767, -0.00168767, 0.07767285, 0.07899442, -0.0141786 , -0.091537 , -0.17286312, -0.13395795, -0.23149209, -0.21597234, -0.10120057], [ 0.00975615, 0.00975615, 0.03443193, 0.06517089, 0.14920537, 0.18919015, 0.18035099, 0.0857476 , 0.00606072, 0.11012113, 0.07706428]]), array([[-0.00175331, -0.00175331, -0.0287228 , -0.09154362, -0.04110257, 0.01101568, 0.02712628, 0.10242836, 0.07742278, 0.10396744, -0.01077678], [-0.00363082, -0.00363082, 0.03785079, 0.00286347, -0.10205137, -0.11114531, -0.14097932, -0.14145283, -0.03088917, 0.02187364, -0.01746397], [-0.00440627, -0.00440627, 0.06612024, 0.08568306, 0.07514716, -0.02447218, -0.08671919, -0.08993161, -0.0866891 , 0.06004321, 0.03307427]]), array([[-0.00140768, -0.00140768, -0.04770053, 0.02368356, -0.01854491, -0.0177372 , 0.12258725, 0.15191025, 0.27096688, 0.12957034, 0.08454442], [-0.00110665, -0.00110665, -0.01084369, -0.05903536, 0.01223592, 0.01156623, -0.07029864, -0.07723911, -0.18700536, -0.18530215, -0.1027698 ], [-0.00757437, -0.00757437, 0.03145993, 0.07224282, 0.07717452, 0.05667952, 0.05830279, -0.01676743, -0.11290411, -0.08804294, -0.10054683]]), array([[ 0.00868599, 0.00868599, 0.06616609, -0.01967958, -0.01992403, -0.10340801, -0.0552377 , -0.05746155, -0.03177958, -0.16827292, -0.06580352], [-0.00810727, -0.00810727, -0.04729795, -0.12947675, -0.1000055 , -0.17357203, -0.16976017, -0.18945621, -0.11241362, -0.15185601, -0.07958202], [ 0.00829307, 0.00829307, 0.02152542, 0.04051823, -0.08233879, 0.00982294, -0.03636911, 0.10680697, 0.10799217, 0.18895872, 0.10901509]]), array([[ 0.00970195, 0.00970195, 0.01591602, -0.05874838, -0.01646345, -0.00270763, 0.12280018, 0.01470906, 0.04448074, -0.00117339, -0.02768125], [-0.00038937, -0.00038937, -0.08099264, -0.04446884, -0.04769936, 0.01888277, 0.02615239, 0.00761542, 0.03523781, 0.00903492, 0.16577458], [-0.00097622, -0.00097622, 0.04849847, 0.00953591, 0.04043374, 0.03663918, 0.03400195, -0.00800923, 0.00801641, -0.03503283, -0.08797539]]), array([[ 0.00066698, 0.00066698, 0.00939601, 0.05622882, 0.00638031, 0.1062942 , 0.14124986, 0.15014872, 0.10411613, 0.12569145, 0.13896325], [-0.00731562, -0.00731562, -0.00785884, 0.01641615, -0.05070598, -0.03569793, -0.02461792, 0.08598277, 0.017639 , 0.13163394, 0.20774464], [ 0.00727937, 0.00727937, 0.01529709, 0.0903828 , 0.18972278, 0.13834699, 0.0820301 , 0.12203838, 0.07898085, 0.18725064, 0.06184947]]), array([[-0.00325196, -0.00325196, -0.04073996, -0.04768186, -0.07339167, 0.01501316, 0.12515743, 0.16263925, 0.18769937, 0.10621693, 0.06779435], [-0.00446023, -0.00446023, -0.00157571, 0.00508287, -0.04120895, -0.08776766, -0.00867159, 0.07129189, 0.05927409, 0.10202861, 0.14488647], [ 0.00955463, 0.00955463, -0.01902468, -0.10054815, -0.06539904, -0.07111124, 0.03781028, 0.02096328, 0.01959393, 0.06243005, 0.19688941]]), array([[ 0.00110399, 0.00110399, 0.02232525, 0.02524589, 0.00507873, 0.01437818, 0.08026546, -0.02272753, 0.01974061, 0.0237453 , -0.04991261], [ 0.00031812, 0.00031812, -0.00107102, 0.00768843, -0.00517951, -0.09207121, -0.10715476, -0.11131932, -0.08709067, -0.17860634, -0.08677356], [ 0.00033542, 0.00033542, 0.02959277, 0.13003343, 0.14775348, 0.1138954 , 0.13906542, 0.14821074, 0.04357713, 0.09061711, 0.0938776 ]]), array([[-0.00720729, -0.00720729, 0.05023511, 0.04355658, 0.11998591, 0.10981641, 0.09356767, 0.10263137, 0.13966833, 0.17652354, 0.25743491], [ 0.00803699, 0.00803699, -0.05716729, 0.03645558, -0.09202234, -0.07514012, -0.14475707, -0.2062253 , -0.24046927, -0.13382669, -0.01164708], [ 0.00131475, 0.00131475, -0.02445588, -0.04025714, -0.01418858, -0.00622588, 0.08450778, 0.11140627, 0.09320292, 0.17460939, 0.13374689]]), array([[ 0.00586142, 0.00586142, 0.01558193, 0.05924529, 0.09167153, 0.02519027, 0.13757291, 0.07112007, 0.01944505, 0.05129038, 0.16997746], [ 0.00043637, 0.00043637, -0.04064165, -0.11441165, -0.07327253, -0.10318355, -0.1047617 , -0.05354875, -0.03800903, 0.01305261, -0.02320387], [ 0.00469107, 0.00469107, -0.02422773, -0.05064212, -0.1130878 , -0.16771616, -0.10738416, -0.08273377, -0.08438174, -0.13086988, -0.19641635]]), array([[ 0.00841939, 0.00841939, -0.0421123 , -0.03801576, -0.01868041, 0.01012045, 0.0821687 , -0.04098282, -0.06477271, -0.01982437, -0.14554835], [ 0.00153533, 0.00153533, -0.01305543, 0.00539148, -0.00090002, 0.04666373, 0.02796363, 0.04977811, 0.13297609, 0.09297096, 0.20959931], [-0.00902159, -0.00902159, -0.01804482, -0.06599557, -0.07503751, -0.07925111, -0.00752578, 0.03623041, 0.05023494, 0.0600982 , 0.03756421]]), array([[-0.00110512, -0.00110512, -0.01097412, -0.0222156 , 0.01309237, 0.06479854, -0.02959904, -0.1261464 , -0.04088622, -0.06814295, -0.10493364], [-0.00110452, -0.00110452, 0.06003893, 0.0324445 , -0.01622522, 0.05666636, 0.17172861, 0.16257823, 0.06513475, 0.0135561 , -0.02476896], [ 0.00618737, 0.00618737, -0.00969687, 0.01539973, -0.06487737, -0.04835752, -0.11917242, -0.02820295, -0.02074751, -0.04844434, 0.00425646]]), array([[-0.0045366 , -0.0045366 , -0.10672228, -0.08157006, -0.07325439, -0.06803908, 0.00663533, 0.00818219, -0.03867081, -0.10807523, -0.06815423], [-0.009898 , -0.009898 , 0.11186777, 0.11163114, 0.03564638, 0.03735512, 0.02724506, 0.00521174, -0.05080197, -0.03214245, 0.00220311], [ 0.00734404, 0.00734404, 0.07200358, 0.03071472, -0.03424889, -0.09823275, -0.02523412, -0.14567978, -0.17088396, -0.11216844, -0.15221915]]), array([[ 0.007828 , 0.007828 , 0.03143745, 0.04476405, 0.04997725, -0.02491767, 0.03881069, -0.03856518, -0.00630253, -0.00160121, 0.0897142 ], [-0.00761105, -0.00761105, 0.02259668, -0.0079192 , -0.00969841, 0.11934612, 0.06242958, -0.01855577, 0.00987546, -0.02141421, -0.0080759 ], [-0.00183626, -0.00183626, -0.09024122, 0.02598121, 0.09958401, 0.09460942, 0.09669274, 0.01609448, -0.01429981, -0.01649477, 0.02014219]]), array([[-0.00208426, -0.00208426, 0.06696874, -0.04690128, 0.02313821, 0.11197071, 0.15746286, 0.08262398, -0.00356288, 0.03428055, 0.01952122], [ 0.00773535, 0.00773535, 0.05490918, 0.07015638, -0.0222506 , -0.02251085, -0.07558717, -0.08591648, -0.09570305, -0.07847206, -0.08418341], [ 0.0051271 , 0.0051271 , -0.05663412, -0.02874446, -0.00531333, 0.02271444, -0.00740703, 0.02525801, 0.02320609, -0.01656918, 0.04558599]]), array([[-0.0079716 , -0.0079716 , -0.08041908, -0.01176361, 0.01268811, 0.10565261, 0.09025817, 0.02496666, 0.05264394, 0.06461375, 0.12340064], [ 0.00085776, 0.00085776, 0.00493244, -0.02212706, -0.05864207, 0.08631169, 0.12492684, 0.12916648, 0.12182534, 0.03692474, 0.00921481], [ 0.00374375, 0.00374375, -0.04847318, -0.00483143, 0.01738571, -0.04626035, -0.00489722, 0.06595099, 0.11056493, 0.18491995, 0.17137238]]), array([[-0.00231526, -0.00231526, -0.07051393, -0.08813285, -0.01954718, 0.01323127, 0.03711464, 0.07415565, 0.14083265, 0.11758949, 0.11548066], [ 0.00563589, 0.00563589, -0.00736861, -0.03240416, -0.01615574, 0.01530566, 0.01415293, -0.08826216, -0.15207998, -0.05588326, -0.07656989], [-0.0029348 , -0.0029348 , -0.07036187, -0.06546417, -0.07587646, -0.00757337, -0.06287316, -0.07911327, -0.09021487, -0.04790671, -0.00880948]]), array([[ 0.0044672 , 0.0044672 , 0.03046067, 0.11680446, 0.13325882, 0.25926485, 0.22415639, 0.26068703, 0.18685428, 0.17266272, 0.05872758], [ 0.00460388, 0.00460388, 0.03306073, -0.13364384, -0.13715814, -0.14359277, 0.02057289, 0.06731857, -0.00501432, 0.07804395, 0.18759838], [-0.00276306, -0.00276306, 0.02462178, 0.02298198, 0.02765701, -0.03503196, 0.0108044 , 0.01169077, -0.14600572, -0.04928539, -0.06770291]]), array([[-0.00561229, -0.00561229, 0.01105693, 0.0861212 , 0.04040498, 0.00761706, -0.07040244, -0.07083086, -0.23020796, -0.15980817, -0.13165899], [ 0.00915306, 0.00915306, -0.05480987, -0.00731757, 0.04115355, -0.01323118, -0.06817083, -0.02209331, -0.06661668, -0.08826067, -0.09313152], [ 0.00723356, 0.00723356, 0.02401681, -0.04880043, -0.06482713, -0.08748136, 0.04517297, 0.00137434, -0.01019052, 0.0860869 , 0.14051532]]), array([[ 0.00265401, 0.00265401, -0.04142786, -0.06960778, 0.02514434, -0.02238679, -0.05582126, -0.04089173, -0.11076882, -0.14340458, -0.20487116], [ 0.00131296, 0.00131296, -0.02947186, 0.03806602, 0.02585083, -0.06844968, -0.09498115, -0.04331743, 0.04766745, 0.01322538, -0.07827376], [ 0.00053011, 0.00053011, 0.06614296, 0.12266616, 0.2201997 , 0.1763755 , 0.13684148, 0.25891646, 0.22051275, 0.24958957, 0.14898096]]), array([[-0.00195771, -0.00195771, 0.14758023, 0.21694401, 0.12083162, 0.12486155, 0.04826563, -0.04693904, -0.04817564, -0.08028536, -0.14594897], [-0.0084248 , -0.0084248 , -0.01964276, -0.05590657, -0.0218368 , 0.03861257, 0.13260691, 0.17464442, 0.18047267, 0.18298356, 0.19835331], [ 0.00527622, 0.00527622, 0.08820737, 0.06686495, 0.09767617, 0.16529043, 0.02335936, -0.0378181 , -0.09655785, -0.12681221, -0.13988443]]), array([[ 6.18740067e-03, 6.18740067e-03, -2.65121464e-02, 4.32714999e-02, 4.59212821e-02, 7.00571528e-02, 7.07647320e-02, 5.93056386e-02, 9.78066232e-02, 1.10927656e-01, 2.08133016e-01], [-3.57855235e-05, -3.57855235e-05, 5.28428014e-03, -5.69666299e-02, -2.78975392e-02, -1.36868338e-01, -2.12248768e-01, -2.57900467e-01, -2.22105588e-01, -2.16443609e-01, -3.32932342e-01], [ 5.02680448e-04, 5.02680448e-04, -4.77757998e-02, -4.84791438e-02, -1.61803356e-01, -2.54542146e-01, -1.47495881e-01, -5.28568462e-02, -1.60449362e-01, -2.15751648e-01, -2.26193709e-01]]), array([[-0.00346963, -0.00346963, -0.0325575 , -0.01678693, 0.02837183, -0.05330046, -0.02767061, 0.04150006, 0.08269505, 0.08187445, 0.17101744], [ 0.00044377, 0.00044377, -0.07645507, -0.05889318, -0.00749087, -0.01786597, 0.06375732, 0.13566671, 0.17518595, 0.1768333 , 0.09361222], [-0.00679646, -0.00679646, 0.05983666, -0.01236094, -0.0636478 , -0.02257527, 0.00261102, 0.01997761, 0.04440339, 0.06555093, 0.03811904]]), array([[-0.0094788 , -0.0094788 , -0.00893925, -0.02092457, 0.02369028, 0.01656033, -0.06739687, -0.05346002, -0.14725615, -0.12984167, -0.10817198], [ 0.00652734, 0.00652734, 0.11513702, 0.06955571, 0.07744154, 0.13639568, 0.02757225, 0.12150289, 0.12240085, 0.14232574, 0.17550821], [-0.00387425, -0.00387425, -0.04455302, 0.0247531 , 0.04767845, 0.03941949, -0.0669688 , -0.0333074 , -0.02849109, -0.07873335, -0.01911159]]), array([[-0.00683669, -0.00683669, 0.0457725 , 0.06688806, 0.00450857, 0.05528188, -0.02528076, -0.00519891, 0.01805916, 0.0785899 , 0.10916799], [-0.00838 , -0.00838 , 0.05747803, 0.0937788 , 0.16058133, 0.13051814, 0.041271 , 0.07951977, 0.08108847, 0.05681386, 0.13064354], [-0.00871147, -0.00871147, 0.02641733, 0.00754227, 0.02240733, 0.05913411, 0.03590867, -0.12576201, -0.09333407, -0.08115505, -0.0027219 ]]), array([[-0.00899131, -0.00899131, -0.10419028, -0.13998684, -0.1348226 , -0.01423411, -0.07211868, -0.08031466, 0.02303083, 0.01492633, 0.00191336], [ 0.00159646, 0.00159646, -0.02049217, 0.00941126, 0.07788189, 0.01372235, 0.00502368, 0.03966524, 0.12446414, 0.13020197, 0.08840384], [ 0.00572858, 0.00572858, -0.00088941, -0.02343154, -0.07887139, 0.02148585, -0.0117987 , 0.00995715, 0.05036511, 0.13643085, 0.20572338]]), array([[-0.00544818, -0.00544818, -0.00230547, 0.10153394, 0.10733338, 0.07762729, -0.00931421, -0.02709907, -0.03342257, -0.04546751, -0.08394626], [-0.00119365, -0.00119365, -0.07682032, -0.0061395 , 0.02477147, -0.02597627, -0.12017888, -0.14318896, -0.14364648, -0.14878437, -0.21238046], [ 0.00912164, 0.00912164, 0.12645015, 0.14860166, 0.19537419, 0.17814139, 0.10809379, 0.07897005, 0.09978225, 0.10513387, 0.08885839]]), array([[-1.59938031e-03, -1.59938031e-03, 2.28267880e-02, 7.97291118e-02, -6.20406086e-02, -5.81468458e-02, -3.04123682e-02, -1.38964660e-01, -1.00915875e-01, -1.12490674e-01, -7.02700097e-02], [-8.83947457e-03, -8.83947457e-03, -2.95812700e-03, -1.02058341e-01, -1.21023768e-01, -1.94559800e-03, 6.97080725e-02, 4.92722234e-03, 1.11118460e-02, 8.03743240e-02, 3.10493135e-02], [ 1.04716615e-04, 1.04716615e-04, -1.53806409e-01, -1.14402949e-01, -1.24679588e-01, -1.18118280e-01, -1.30611340e-01, -4.94534470e-02, -2.08217046e-01, -3.05169124e-01, -3.61155645e-01]]), array([[ 0.00719657, 0.00719657, 0.03392607, -0.03130527, -0.16719479, -0.18252087, -0.12577957, -0.08761841, -0.07623972, -0.09784576, -0.18391126], [ 0.00630826, 0.00630826, 0.05614123, 0.0457181 , 0.01983161, 0.03861969, -0.0564614 , 0.05855871, 0.10800121, 0.05957052, 0.02449015], [ 0.00978842, 0.00978842, -0.08601208, -0.10645721, 0.04505306, -0.00182978, -0.02921599, -0.07045813, -0.01016436, 0.06124744, 0.17974143]]), array([[-0.00696485, -0.00696485, 0.10832944, 0.12699061, 0.13906697, 0.1291467 , 0.08983829, 0.08319389, -0.00619058, -0.04045482, -0.17025643], [-0.00672254, -0.00672254, 0.05961749, 0.05794137, 0.1763901 , 0.07844281, 0.0806708 , 0.1320047 , 0.09013228, 0.12515935, 0.16246618], [ 0.00095821, 0.00095821, -0.03470183, -0.09912448, -0.03578345, -0.02707022, 0.09408008, 0.11307639, 0.19728479, 0.15121819, 0.1152107 ]]), array([[-0.00996792, -0.00996792, -0.10860877, 0.06683907, 0.12555419, 0.19359255, -0.01108634, 0.09109079, 0.10611129, 0.08743139, 0.16730435], [ 0.00940293, 0.00940293, 0.0216762 , 0.16305426, 0.0584939 , 0.06199123, 0.0343359 , 0.11414396, 0.14500426, 0.20975601, 0.19877058], [ 0.00811993, 0.00811993, -0.01449177, 0.02899886, -0.04758051, 0.00787828, -0.00820061, 0.11510134, 0.20566772, 0.21768038, 0.17487159]]), array([[-0.00855025, -0.00855025, 0.03319607, 0.07899325, 0.13107804, 0.08791159, 0.12603802, 0.11632246, 0.17793467, 0.28081514, 0.2200316 ], [-0.00250886, -0.00250886, 0.03632468, 0.04030676, 0.04164174, 0.14871164, 0.20195753, 0.15285011, 0.13510768, 0.11133223, 0.09328749], [-0.00589272, -0.00589272, -0.16844706, -0.12381661, -0.25896543, -0.30080614, -0.26258782, -0.32605695, -0.38810732, -0.2986306 , -0.34441324]]), array([[-0.00284631, -0.00284631, 0.1047258 , 0.02447461, -0.04263612, -0.01174526, 0.02684124, 0.06701124, 0.04320678, -0.00076768, -0.05160077], [ 0.00875065, 0.00875065, 0.00703037, -0.05254011, -0.04831043, 0.0027017 , 0.00528237, -0.08605765, -0.12929672, -0.13548893, -0.23739426], [-0.00957392, -0.00957392, 0.04432345, 0.0292042 , 0.0625208 , -0.03301258, 0.07164999, 0.07031306, 0.08093484, 0.11616802, 0.10368589]]), array([[ 0.00337463, 0.00337463, 0.10276076, 0.05634529, -0.1039664 , -0.03966809, -0.07810426, -0.05770887, 0.00153481, -0.07765246, -0.01116488], [-0.00585666, -0.00585666, -0.0592236 , -0.01384749, 0.06754684, 0.06624488, 0.00987398, 0.0713786 , 0.02014503, -0.07275685, -0.12735125], [-0.00128323, -0.00128323, -0.03600881, -0.01740002, -0.1711707 , -0.10555883, -0.20482361, -0.36327508, -0.47102282, -0.49846239, -0.4635062 ]]), array([[ 0.00655085, 0.00655085, 0.05064494, 0.05207415, 0.04318878, 0.00091127, -0.16576687, -0.24446091, -0.23832876, -0.32821957, -0.34394696], [ 0.00875766, 0.00875766, 0.01222851, -0.04331643, -0.05869285, -0.10525166, 0.01386745, -0.17617706, -0.19565946, -0.20815683, -0.20432452], [ 0.00374922, 0.00374922, -0.08522323, -0.15659424, -0.0388053 , -0.02383037, -0.02723187, 0.10286754, 0.12765775, 0.07537414, -0.19356655]]), array([[-0.00259636, -0.00259636, -0.08119916, -0.01299437, -0.11139976, -0.00998877, 0.00714138, -0.03551595, -0.01058553, -0.11945835, -0.07381597], [ 0.00886674, 0.00886674, -0.08650466, -0.01498271, 0.06339173, -0.03325444, 0.06851907, 0.05575593, 0.03764605, 0.08188299, 0.09228509], [ 0.00832676, 0.00832676, -0.14181417, -0.09476785, -0.15091304, -0.12594264, -0.19933083, -0.14750516, -0.20578238, -0.21680284, -0.26912079]]), array([[-0.00500778, -0.00500778, 0.07399383, -0.01134325, 0.03989841, 0.04700092, 0.0887207 , 0.03920936, 0.12089363, 0.04939294, 0.02254626], [ 0.00170101, 0.00170101, -0.08011421, -0.15102808, -0.11313038, -0.17183954, -0.16453337, -0.16977497, -0.14068227, -0.20892057, -0.32913649], [-0.0007524 , -0.0007524 , -0.04074762, -0.13539639, -0.1577511 , -0.12417058, -0.20063874, -0.18652559, -0.21066738, -0.29950269, -0.25545295]]), array([[ 0.00225932, 0.00225932, 0.05265748, 0.02014295, -0.03465931, -0.0233614 , -0.00947428, -0.06281744, 0.02908054, 0.00994037, 0.08014231], [ 0.00883031, 0.00883031, 0.06432448, 0.10543966, 0.05701387, 0.12437349, 0.11906569, -0.03929785, -0.0875541 , -0.11706174, -0.03610261], [ 0.00833397, 0.00833397, -0.02121328, 0.09965663, 0.03845366, -0.10029081, -0.11313815, -0.16467118, -0.11530273, -0.07374712, -0.07421014]]), array([[-0.00996527, -0.00996527, 0.00271207, -0.03250311, -0.0614812 , -0.09351111, -0.00221775, 0.00215161, 0.04424361, -0.03228653, 0.06752814], [ 0.00290753, 0.00290753, -0.08841318, -0.13445093, -0.01066993, 0.01240906, 0.12969421, 0.15358558, 0.23989824, 0.26054233, 0.26897335], [ 0.00594122, 0.00594122, 0.0509271 , 0.00360901, 0.08322711, 0.13261874, 0.09443046, 0.20145104, 0.16542015, 0.19722297, 0.15526143]]), array([[ 0.00708804, 0.00708804, -0.03653377, 0.02333356, 0.01359522, -0.05806018, 0.00370576, 0.04495316, 0.11246401, 0.10552864, 0.18196003], [-0.00804464, -0.00804464, -0.06978486, -0.0643779 , -0.1275451 , -0.08842311, -0.10472881, -0.10602025, -0.02956062, 0.00728058, 0.10030858], [ 0.00329679, 0.00329679, 0.08667899, 0.11318778, 0.12680636, 0.0228726 , 0.09325415, 0.01821058, 0.04220341, 0.08827272, 0.10709685]]), array([[-0.00782383, -0.00782383, -0.05737082, -0.04170618, 0.0728971 , 0.11331504, 0.06295425, 0.00331333, -0.01707293, 0.02586649, 0.01733528], [ 0.00590125, 0.00590125, 0.05179181, 0.00386938, -0.09872479, 0.01276387, -0.00676501, -0.12941005, -0.14251799, -0.13003798, -0.18360107], [ 0.00387253, 0.00387253, -0.02857773, 0.1178554 , 0.05271353, 0.07493269, 0.04140405, 0.02623193, 0.02220713, -0.02966762, 0.06154946]]), array([[-0.00638772, -0.00638772, 0.0176179 , 0.0302937 , -0.05904406, -0.11288305, -0.04906221, -0.00183402, 0.01762545, -0.06639679, 0.05313438], [-0.00926095, -0.00926095, -0.05511978, 0.00397692, -0.03600375, -0.00676137, 0.00600471, -0.01570018, -0.06399183, -0.04768959, 0.00668667], [-0.00510095, -0.00510095, 0.02525779, -0.12808632, -0.23866518, -0.0665891 , -0.00465973, 0.02448032, 0.06500448, 0.08280488, 0.00803519]]), array([[ 0.0031143 , 0.0031143 , 0.05394581, 0.0738393 , 0.011868 , 0.08320475, 0.05859631, 0.03697475, 0.08027358, 0.14674713, 0.1046629 ], [-0.00912042, -0.00912042, 0.08456177, 0.13347729, 0.0828764 , -0.10465973, -0.1521101 , -0.13342305, -0.0723268 , -0.13682554, -0.13922605], [ 0.00396937, 0.00396937, 0.05362572, 0.04223592, -0.01051706, 0.11481615, 0.12253235, 0.12980322, 0.19280759, 0.20682757, 0.22994537]]), array([[-7.24215155e-03, -7.24215155e-03, 1.53702651e-01, 3.96739547e-02, 9.34495930e-02, 7.13784008e-02, 1.00918312e-01, 4.14075883e-02, 4.97010029e-02, 7.73270700e-02, 5.21246088e-02], [ 1.33148771e-04, 1.33148771e-04, -1.21040698e-02, 1.41478206e-01, 7.20836288e-03, 2.31590521e-02, -2.10802825e-03, 4.25167499e-02, 1.13470523e-01, 7.62091434e-02, 1.79767212e-01], [ 8.40293469e-03, 8.40293469e-03, 4.74145489e-02, 9.97488751e-02, 1.11666323e-02, -2.61695162e-02, 1.32820628e-02, -4.26179480e-02, -1.05893466e-01, -4.53889096e-02, -3.60323631e-02]]), array([[ 0.00628672, 0.00628672, 0.13569298, 0.02445094, 0.04695034, -0.02585996, 0.05496633, 0.18341165, 0.27561368, 0.35463844, 0.30327079], [ 0.00542538, 0.00542538, 0.05207029, -0.01660896, -0.02878961, -0.06152726, -0.00467562, 0.03277722, 0.04255336, 0.03252186, 0.06460897], [-0.00722372, -0.00722372, -0.03911674, -0.0535201 , -0.08852686, -0.06253743, -0.10967233, -0.23966317, -0.17783484, -0.15083955, -0.15769583]]), array([[ 0.00820102, 0.00820102, -0.07710315, -0.02329433, -0.1937788 , -0.17033208, -0.12380319, -0.042841 , -0.06927554, -0.0291099 , -0.13086519], [-0.00225952, -0.00225952, -0.07232144, 0.00814016, 0.08546958, 0.05045397, 0.06685883, -0.04992709, -0.04576532, -0.08242854, -0.14523363], [-0.00578959, -0.00578959, -0.07940939, 0.02123901, -0.00796773, 0.07441013, 0.08276979, 0.03455485, 0.08216994, -0.02539518, 0.00513331]]), array([[-0.00963085, -0.00963085, -0.0159226 , -0.08732835, -0.03405343, -0.06856986, -0.08377003, -0.13631278, -0.06725387, -0.0304161 , -0.12880209], [-0.00985209, -0.00985209, -0.00915322, -0.06282905, -0.11693874, -0.10386208, -0.13329874, -0.06077301, -0.10681768, -0.06780343, -0.07188699], [-0.0042695 , -0.0042695 , 0.10695327, 0.06247869, 0.11043389, 0.07907128, 0.11199966, 0.11450002, 0.19703986, 0.20899045, 0.08008921]]), array([[-0.00742755, -0.00742755, 0.1213765 , 0.16435114, 0.19001912, 0.19884681, 0.2697013 , 0.25649342, 0.32326159, 0.31013653, 0.36041936], [-0.00088535, -0.00088535, 0.04133507, 0.02775729, 0.03454264, 0.11072008, 0.08393066, 0.02206957, -0.04112297, -0.08150974, -0.15869889], [-0.00602387, -0.00602387, 0.00165739, 0.06132238, 0.03782908, -0.08062833, -0.06225164, -0.01052643, 0.00692477, 0.05472742, 0.0399267 ]]), array([[-0.00925451, -0.00925451, -0.04234725, -0.03904656, 0.02624803, -0.01187404, 0.1699987 , 0.23338978, 0.19674055, 0.30635635, 0.30966569], [-0.00643739, -0.00643739, -0.01455898, -0.06138555, 0.02360044, -0.10183695, -0.00379654, 0.04907491, 0.12068845, 0.14668797, 0.24114202], [ 0.00402115, 0.00402115, -0.0027068 , 0.07894471, 0.12257237, 0.06433485, -0.02545577, 0.02280768, -0.05660917, -0.08797163, -0.01411695]]), array([[ 0.00685015, 0.00685015, 0.03676947, 0.14952445, 0.28261051, 0.23522549, 0.20797693, 0.26595252, 0.40615627, 0.38554433, 0.4086098 ], [-0.00800606, -0.00800606, 0.06557321, -0.03334613, -0.05336988, 0.02531207, 0.02186849, 0.03328748, 0.00495652, 0.04220472, 0.03865795], [-0.00384782, -0.00384782, 0.03727835, 0.06798657, 0.01949377, 0.03319804, 0.03785876, 0.11323397, 0.05689152, 0.02172952, 0.00406243]]), array([[ 0.00680829, 0.00680829, 0.02565873, 0.09305685, 0.01829175, 0.0422077 , -0.02363712, 0.09947803, 0.07823982, 0.12942611, 0.1340739 ], [ 0.00796749, 0.00796749, -0.00183952, 0.02709609, 0.00941703, 0.05175601, 0.10953412, 0.2007169 , 0.12714829, 0.18246128, 0.20850261], [-0.0026093 , -0.0026093 , 0.01249918, -0.03937033, 0.00946948, -0.13313891, -0.09174408, -0.02657849, -0.02048028, -0.14511832, -0.12619787]]), array([[ 0.00952432, 0.00952432, -0.02952435, 0.02370957, 0.01539796, -0.04170175, 0.04675487, 0.07775262, 0.03036119, -0.06396837, -0.04223962], [ 0.00924008, 0.00924008, -0.06429739, -0.11022668, 0.04883928, 0.14403041, 0.11465353, 0.06847658, -0.00053796, 0.12330555, 0.21037797], [ 0.0050049 , 0.0050049 , -0.03977505, -0.00643985, -0.15050413, -0.04351856, -0.01843023, 0.01758482, -0.01000629, 0.01237998, 0.05158996]]), array([[-6.01168556e-03, -6.01168556e-03, 9.47304818e-02, 1.07591695e-01, 1.56829567e-01, 5.53934212e-02, -1.49715498e-02, 3.56489826e-02, -1.85851073e-02, 2.51779711e-02, -1.10848284e-01], [ 4.30011480e-05, 4.30011480e-05, -3.54239822e-02, 2.11871414e-02, -5.81087460e-02, 1.75249114e-02, -3.53236585e-02, 3.10378759e-02, 1.05932984e-02, 6.59477647e-03, -1.46389690e-01], [-9.24673647e-03, -9.24673647e-03, 2.79583347e-03, 9.75030009e-04, -2.53885986e-02, -1.59819269e-02, -1.62485504e-02, -1.19229719e-02, 1.15624104e-02, 2.44841351e-02, -2.23556908e-02]])] {'color': (0.5, 0, 0, 1), 'linewidth': 1.0, 'linestyle': '-'} ```

Uninstall (in the linked example, karenina-test is used, rather than karenina):

Expand

### pip uninstall karenina-test ```bash Uninstalling karenina-test-0.0.1: Would remove: c:\users\ripti\anaconda3\lib\site-packages\karenina_test-0.0.1-py3.6.egg c:\users\ripti\anaconda3\scripts\karenina-script.py c:\users\ripti\anaconda3\scripts\karenina.exe Proceed (y/n)? y Successfully uninstalled karenina-test-0.0.1 ```


To set up Travis CI:

  1. Log into github at the following address https://travis-ci.org/auth

  2. Navigate to your Travis CI profile and use the switch on karenina to enable Travis CI for this repository.


Note: Currently, Travis CI will install both scipy and ffmpeg, and does pass for python 2.7, 3.4, and 3.6.

Image